aboutsummaryrefslogtreecommitdiff
path: root/lib/events
diff options
context:
space:
mode:
Diffstat (limited to 'lib/events')
-rw-r--r--lib/events/accountdataevents.h2
-rw-r--r--lib/events/encryptedevent.cpp2
-rw-r--r--lib/events/encryptionevent.cpp2
-rw-r--r--lib/events/reactionevent.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/events/accountdataevents.h b/lib/events/accountdataevents.h
index 600fa5be..68392a32 100644
--- a/lib/events/accountdataevents.h
+++ b/lib/events/accountdataevents.h
@@ -48,7 +48,7 @@ struct JsonObjectConverter<TagRecord> {
static void fillFrom(const QJsonObject& jo, TagRecord& rec)
{
// Parse a float both from JSON double and JSON string because
- // libqmatrixclient previously used to use strings to store order.
+ // the library previously used to use strings to store order.
const auto orderJv = jo.value("order"_ls);
if (orderJv.isDouble())
rec.order = fromJson<float>(orderJv);
diff --git a/lib/events/encryptedevent.cpp b/lib/events/encryptedevent.cpp
index dac245fa..b5cedc69 100644
--- a/lib/events/encryptedevent.cpp
+++ b/lib/events/encryptedevent.cpp
@@ -2,7 +2,7 @@
#include "room.h"
-using namespace QMatrixClient;
+using namespace Quotient;
using namespace QtOlm;
EncryptedEvent::EncryptedEvent(const QJsonObject& ciphertext,
diff --git a/lib/events/encryptionevent.cpp b/lib/events/encryptionevent.cpp
index 945e6696..073303b0 100644
--- a/lib/events/encryptionevent.cpp
+++ b/lib/events/encryptionevent.cpp
@@ -30,7 +30,7 @@ struct JsonConverter<EncryptionType> {
return EncryptionType::Undefined;
}
};
-} // namespace QMatrixClient
+} // namespace Quotient
using namespace Quotient;
diff --git a/lib/events/reactionevent.cpp b/lib/events/reactionevent.cpp
index df8910fe..003c8ead 100644
--- a/lib/events/reactionevent.cpp
+++ b/lib/events/reactionevent.cpp
@@ -18,7 +18,7 @@
#include "reactionevent.h"
-using namespace QMatrixClient;
+using namespace Quotient;
void JsonObjectConverter<EventRelation>::dumpTo(
QJsonObject& jo, const EventRelation& pod)