diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-05-07 18:13:51 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-05-07 18:14:49 +0900 |
commit | 5a0e6080a6245aa2c68f254d7105f19629a5a654 (patch) | |
tree | fa0f4aded71f27974c9922bd587ba78774ade46c | |
parent | 0b7bee1e2600ee80554aa85b18d30ca1964535a0 (diff) | |
download | libquotient-5a0e6080a6245aa2c68f254d7105f19629a5a654.tar.gz libquotient-5a0e6080a6245aa2c68f254d7105f19629a5a654.zip |
Minors: one fix, one cleanup
-rw-r--r-- | connection.cpp | 2 | ||||
-rw-r--r-- | room.cpp | 1 |
2 files changed, 1 insertions, 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, [=] () { @@ -74,7 +74,6 @@ class Room::Private: public QObject QHash<User*, QString> 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 |