From 5a0e6080a6245aa2c68f254d7105f19629a5a654 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Sat, 7 May 2016 18:13:51 +0900 Subject: Minors: one fix, one cleanup --- connection.cpp | 2 +- room.cpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/connection.cpp b/connection.cpp index bf19a16e..a219f1da 100644 --- a/connection.cpp +++ b/connection.cpp @@ -63,7 +63,7 @@ void Connection::connectToServer(QString user, QString password) { PasswordLogin* loginJob = new PasswordLogin(d->data, user, password); connect( loginJob, &PasswordLogin::success, [=] () { - qDebug() << "Our user ID: " << d->userId; + qDebug() << "Our user ID: " << loginJob->id(); connectWithToken(loginJob->id(), loginJob->token()); }); connect( loginJob, &PasswordLogin::failure, [=] () { diff --git a/room.cpp b/room.cpp index 07c94987..81b64c54 100644 --- a/room.cpp +++ b/room.cpp @@ -74,7 +74,6 @@ class Room::Private: public QObject QHash lastReadEvent; QString prevBatch; RoomMessagesJob* roomMessagesJob; - bool gettingNewContent; // Convenience methods to work with the membersMap and usersLeft. addMember() // and removeMember() emit respective Room:: signals after a succesful -- cgit v1.2.3