aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/pusher.cpp
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-07-07 19:32:34 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-09 10:18:37 +0900
commit27ca32a1e5a56e09b9cc1d94224d2831004dcf3d (patch)
treef2e8d19705a13e39bd9484d13098f323c8d30194 /lib/csapi/pusher.cpp
parent7a5b359b8823646ce97cbaf05c251cb04c291466 (diff)
downloadlibquotient-27ca32a1e5a56e09b9cc1d94224d2831004dcf3d.tar.gz
libquotient-27ca32a1e5a56e09b9cc1d94224d2831004dcf3d.zip
Namespace: QMatrixClient -> Quotient (with back comp alias)
Diffstat (limited to 'lib/csapi/pusher.cpp')
-rw-r--r--lib/csapi/pusher.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/csapi/pusher.cpp b/lib/csapi/pusher.cpp
index 41a0cffe..90877a95 100644
--- a/lib/csapi/pusher.cpp
+++ b/lib/csapi/pusher.cpp
@@ -8,12 +8,12 @@
#include <QtCore/QStringBuilder>
-using namespace QMatrixClient;
+using namespace Quotient;
static const auto basePath = QStringLiteral("/_matrix/client/r0");
// Converters
-namespace QMatrixClient
+namespace Quotient
{
template <>
@@ -43,7 +43,7 @@ struct JsonObjectConverter<GetPushersJob::Pusher>
}
};
-} // namespace QMatrixClient
+} // namespace Quotient
class GetPushersJob::Private
{
@@ -79,7 +79,7 @@ BaseJob::Status GetPushersJob::parseJson(const QJsonDocument& data)
}
// Converters
-namespace QMatrixClient
+namespace Quotient
{
template <>
@@ -92,7 +92,7 @@ struct JsonObjectConverter<PostPusherJob::PusherData>
}
};
-} // namespace QMatrixClient
+} // namespace Quotient
static const auto PostPusherJobName = QStringLiteral("PostPusherJob");