summary refs log tree commit diff
path: root/src/MatrixClient.cpp
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-06-02 00:24:26 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2023-06-08 22:32:07 +0200
commitb518f6902e909b22e1623f96249a3ab1424ced59 (patch)
tree97fe4bdf0f2ffb1e35904c1d2111c6e566984d7c /src/MatrixClient.cpp
parentSelect Qt6 in cmake (diff)
downloadnheko-b518f6902e909b22e1623f96249a3ab1424ced59.tar.xz
Make Nheko compile on Qt6
Diffstat (limited to '')
-rw-r--r--src/MatrixClient.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/MatrixClient.cpp b/src/MatrixClient.cpp

index 1452257a..55542a75 100644 --- a/src/MatrixClient.cpp +++ b/src/MatrixClient.cpp
@@ -15,18 +15,7 @@ #include "nlohmann/json.hpp" #include <mtx/responses.hpp> -Q_DECLARE_METATYPE(mtx::responses::Login) -Q_DECLARE_METATYPE(mtx::responses::Messages) -Q_DECLARE_METATYPE(mtx::responses::Notifications) -Q_DECLARE_METATYPE(mtx::responses::Rooms) -Q_DECLARE_METATYPE(mtx::responses::Sync) -Q_DECLARE_METATYPE(mtx::responses::StateEvents) -// Q_DECLARE_METATYPE(nlohmann::json) -Q_DECLARE_METATYPE(std::string) -Q_DECLARE_METATYPE(std::vector<std::string>) -Q_DECLARE_METATYPE(std::vector<QString>) -Q_DECLARE_METATYPE(std::set<QString>) namespace http { @@ -52,18 +41,6 @@ is_logged_in() void init() { - qRegisterMetaType<mtx::responses::Login>(); - qRegisterMetaType<mtx::responses::Messages>(); - qRegisterMetaType<mtx::responses::Notifications>(); - qRegisterMetaType<mtx::responses::Rooms>(); - qRegisterMetaType<mtx::responses::Sync>(); - qRegisterMetaType<mtx::responses::StateEvents>(); - qRegisterMetaType<std::string>(); - // qRegisterMetaType<nlohmann::json>(); - qRegisterMetaType<std::vector<std::string>>(); - qRegisterMetaType<std::vector<QString>>(); - qRegisterMetaType<std::map<QString, bool>>("std::map<QString, bool>"); - qRegisterMetaType<std::set<QString>>(); } } // namespace http