aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-10-12 15:14:05 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-10-12 15:14:05 +0900
commit98c416813177f7141079101da978fe1222574b5c (patch)
treeb187fbc16eae8218f1f047c304f27f0542dabfd2 /lib
parent246ececa1f8f0c69a6ee95d1d2de9d311d4e81b1 (diff)
downloadlibquotient-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.cpp2
-rw-r--r--lib/room.h3
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});
}
diff --git a/lib/room.h b/lib/room.h
index 5ad8b2cf..f1566ac5 100644
--- a/lib/room.h
+++ b/lib/room.h
@@ -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);