diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-09-25 11:21:50 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-09-25 11:35:07 +0900 |
commit | f5c2e47fa1ab84fdaffe03c30ba973d7dea5ac05 (patch) | |
tree | 5c067d8adb1da191c30a5f72143b5bf1681690d9 /lib | |
parent | 9fb5fd1181fc74a040630df333a20ddd29cd7b28 (diff) | |
download | libquotient-f5c2e47fa1ab84fdaffe03c30ba973d7dea5ac05.tar.gz libquotient-f5c2e47fa1ab84fdaffe03c30ba973d7dea5ac05.zip |
Room::addTag: fix the QML-friendly overload's parameter
TagRecord::order_type is float now, not QString.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/room.cpp | 2 | ||||
-rw-r--r-- | lib/room.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/room.cpp b/lib/room.cpp index b7e8195d..2e409124 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -726,7 +726,7 @@ void Room::addTag(const QString& name, const TagRecord& record) d->sendTagUpdates(); } -void Room::addTag(const QString& name, const QString& order) +void Room::addTag(const QString& name, TagRecord::order_type order) { addTag(name, TagRecord{order}); } @@ -262,7 +262,8 @@ namespace QMatrixClient * clients. */ void addTag(const QString& name, const TagRecord& record = {}); - Q_INVOKABLE void addTag(const QString& name, const QString& order); + Q_INVOKABLE void addTag(const QString& name, + TagRecord::order_type order); /// Remove a tag from the room Q_INVOKABLE void removeTag(const QString& name); |