diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-08-01 09:55:00 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-08-01 09:55:00 +0900 |
commit | 405271605f334ad09c7dc638fc5d6ef11849cada (patch) | |
tree | ab955483142d8b8b1ca6018a9b8533b147b1211f /lib/events/event.h | |
parent | 1ea94b918569dd26452f285c408e605f9dc15343 (diff) | |
parent | f5083ee71e6fad9f28c4b835899f3ad574b426f1 (diff) | |
download | libquotient-405271605f334ad09c7dc638fc5d6ef11849cada.tar.gz libquotient-405271605f334ad09c7dc638fc5d6ef11849cada.zip |
Merge branch 'master' into kitsune-relations
Unified *Key -> *KeyL identifiers in roommessageevent.cpp along the way.
Diffstat (limited to 'lib/events/event.h')
-rw-r--r-- | lib/events/event.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/events/event.h b/lib/events/event.h index b3a58806..dee1c44a 100644 --- a/lib/events/event.h +++ b/lib/events/event.h @@ -57,11 +57,13 @@ namespace QMatrixClient // === Standard Matrix key names and basicEventJson() === static const auto TypeKey = QStringLiteral("type"); + static const auto BodyKey = QStringLiteral("body"); static const auto ContentKey = QStringLiteral("content"); static const auto EventIdKey = QStringLiteral("event_id"); static const auto UnsignedKey = QStringLiteral("unsigned"); static const auto StateKeyKey = QStringLiteral("state_key"); static const auto TypeKeyL = "type"_ls; + static const auto BodyKeyL = "body"_ls; static const auto ContentKeyL = "content"_ls; static const auto EventIdKeyL = "event_id"_ls; static const auto UnsignedKeyL = "unsigned"_ls; |