diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-10 16:32:24 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-12-10 16:32:24 +0900 |
commit | 5a5ae02e1eb9d58b162d8e3c0b3f837a6719d38f (patch) | |
tree | b549b9c3dbd71f2e9a705876620ca3c2bcd354af /examples | |
parent | d8a7d9cbef6d90b6b15ffbf26bf43f5555dbaefd (diff) | |
download | libquotient-5a5ae02e1eb9d58b162d8e3c0b3f837a6719d38f.tar.gz libquotient-5a5ae02e1eb9d58b162d8e3c0b3f837a6719d38f.zip |
Fixed compilation with older Qt
Diffstat (limited to 'examples')
-rw-r--r-- | examples/qmc-example.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/qmc-example.cpp b/examples/qmc-example.cpp index 62ae8310..ff7944ce 100644 --- a/examples/qmc-example.cpp +++ b/examples/qmc-example.cpp @@ -29,7 +29,7 @@ void onNewRoom(Room* r) << r->roomMembername(e->senderId()).toStdString() << endl << "Timestamp:" << e->timestamp().toString().toStdString() << endl - << "JSON:" << endl << e->originalJson().toStdString() << endl; + << "JSON:" << endl << string(e->originalJson()) << endl; } }); } |