diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-08-22 16:17:38 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-08-22 16:22:56 +0900 |
commit | fb6df81fa9f224c94118fd79fea91ae15559c7e3 (patch) | |
tree | c5409c28a1baf1d78dd32358e8fa045dfdb69d28 /connectionprivate.h | |
parent | c2e38f28987b4fa273765b4234c6a57bdf75e446 (diff) | |
download | libquotient-fb6df81fa9f224c94118fd79fea91ae15559c7e3.tar.gz libquotient-fb6df81fa9f224c94118fd79fea91ae15559c7e3.zip |
Replaced QList<> with QVector<> where appropriate + minor code cleanup
See https://marcmutz.wordpress.com/effective-qt/containers/ for the background and http://lists.qt-project.org/pipermail/development/2015-July/022283.html for the relevant flamewar in Qt dev mailing list.
Diffstat (limited to 'connectionprivate.h')
-rw-r--r-- | connectionprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectionprivate.h b/connectionprivate.h index 8e37a934..61eee648 100644 --- a/connectionprivate.h +++ b/connectionprivate.h @@ -46,7 +46,7 @@ namespace QMatrixClient void resolveServer( QString domain ); void processState( State* state ); - void processRooms( const QList<SyncRoomData>& data ); + /** Finds a room with this id or creates a new one and adds it to roomMap. */ Room* provideRoom( QString id ); |