diff options
author | Felix Rohrbach <fxrh@gmx.de> | 2016-08-23 18:35:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-23 18:35:40 +0200 |
commit | 77d45e9afa195f7d715a5074b16f16c6b2d15235 (patch) | |
tree | b8c9f1d73e0eba48cc55194b06bbbeb97bc4e258 /connectionprivate.h | |
parent | da52097f1c90d7286aff27a84fc14b6b0793ff97 (diff) | |
parent | fb6df81fa9f224c94118fd79fea91ae15559c7e3 (diff) | |
download | libquotient-77d45e9afa195f7d715a5074b16f16c6b2d15235.tar.gz libquotient-77d45e9afa195f7d715a5074b16f16c6b2d15235.zip |
Merge pull request #18 from Fxrh/kitsune-use-qvector-with-nonpointers
Replaced QList<> with QVector<> where appropriate + minor code cleanup
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 d1199081..424ef998 100644 --- a/connectionprivate.h +++ b/connectionprivate.h @@ -45,7 +45,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 ); |