summary refs log tree commit diff
path: root/src/MatrixClient.cpp
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-12-28 20:09:08 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2021-12-28 20:09:08 +0100
commit5ca98829f7c5bf504e78bd51e6ceb534c023ae05 (patch)
tree2e624400f17b2b8220431a500e4ffc9f3671e4a7 /src/MatrixClient.cpp
parentMisc clang-tidy fixes (diff)
downloadnheko-5ca98829f7c5bf504e78bd51e6ceb534c023ae05.tar.xz
Some qt6 prep
Diffstat (limited to '')
-rw-r--r--src/MatrixClient.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/MatrixClient.cpp b/src/MatrixClient.cpp

index 35277a69..38329f88 100644 --- a/src/MatrixClient.cpp +++ b/src/MatrixClient.cpp
@@ -22,7 +22,7 @@ Q_DECLARE_METATYPE(mtx::responses::Sync) Q_DECLARE_METATYPE(mtx::responses::JoinedGroups) Q_DECLARE_METATYPE(mtx::responses::GroupProfile) -Q_DECLARE_METATYPE(nlohmann::json) +// Q_DECLARE_METATYPE(nlohmann::json) Q_DECLARE_METATYPE(std::string) Q_DECLARE_METATYPE(std::vector<std::string>) Q_DECLARE_METATYPE(std::vector<QString>) @@ -54,7 +54,7 @@ init() qRegisterMetaType<mtx::responses::JoinedGroups>(); qRegisterMetaType<mtx::responses::GroupProfile>(); qRegisterMetaType<std::string>(); - qRegisterMetaType<nlohmann::json>(); + // qRegisterMetaType<nlohmann::json>(); qRegisterMetaType<std::vector<std::string>>(); qRegisterMetaType<std::vector<QString>>(); qRegisterMetaType<std::map<QString, bool>>("std::map<QString, bool>");