diff options
Diffstat (limited to 'events/typingevent.cpp')
-rw-r--r-- | events/typingevent.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/events/typingevent.cpp b/events/typingevent.cpp index 242094e1..36a7e693 100644 --- a/events/typingevent.cpp +++ b/events/typingevent.cpp @@ -19,6 +19,7 @@ #include "typingevent.h" #include <QtCore/QJsonArray> +#include <QtCore/QDebug> using namespace QMatrixClient; @@ -53,5 +54,6 @@ TypingEvent* TypingEvent::fromJson(const QJsonObject& obj) { e->d->users << user.toString(); } + qDebug() << "Typing:" << e->d->users; return e; } |