diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-10-12 15:14:05 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-10-12 15:14:05 +0900 |
commit | 98c416813177f7141079101da978fe1222574b5c (patch) | |
tree | b187fbc16eae8218f1f047c304f27f0542dabfd2 /lib | |
parent | 246ececa1f8f0c69a6ee95d1d2de9d311d4e81b1 (diff) | |
download | libquotient-98c416813177f7141079101da978fe1222574b5c.tar.gz libquotient-98c416813177f7141079101da978fe1222574b5c.zip |
Room::addTag: use float instead of Omittable<float>
No-order is already modelled with the other overload, and Omittable<>
breaks interfacing with QML.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/room.cpp | 2 | ||||
-rw-r--r-- | lib/room.h | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/lib/room.cpp b/lib/room.cpp index c6d63ce7..7c45bf89 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -721,7 +721,7 @@ void Room::addTag(const QString& name, const TagRecord& record) checkRes.second, record.order); } -void Room::addTag(const QString& name, TagRecord::order_type order) +void Room::addTag(const QString& name, float order) { addTag(name, TagRecord{order}); } @@ -262,8 +262,7 @@ namespace QMatrixClient * clients. */ void addTag(const QString& name, const TagRecord& record = {}); - Q_INVOKABLE void addTag(const QString& name, - TagRecord::order_type order); + Q_INVOKABLE void addTag(const QString& name, float order); /// Remove a tag from the room Q_INVOKABLE void removeTag(const QString& name); |