From 2ffb390231ee0793339f92d765495c59f8d84629 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Mon, 15 Aug 2016 11:47:38 +0900 Subject: Fixed a typo in the enum definition Fortunately, the clients don't seem to use it atm. --- events/roommessageevent.cpp | 2 +- events/roommessageevent.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/events/roommessageevent.cpp b/events/roommessageevent.cpp index b7459054..48f52453 100644 --- a/events/roommessageevent.cpp +++ b/events/roommessageevent.cpp @@ -171,7 +171,7 @@ RoomMessageEvent* RoomMessageEvent::fromJson(const QJsonObject& obj) { qDebug() << "RoomMessageEvent: unknown msgtype: " << msgtype; qDebug() << obj; - e->d->msgtype = MessageEventType::Unkown; + e->d->msgtype = MessageEventType::Unknown; e->d->content = new MessageEventContent; } diff --git a/events/roommessageevent.h b/events/roommessageevent.h index 939113d1..b0d5a1cb 100644 --- a/events/roommessageevent.h +++ b/events/roommessageevent.h @@ -27,7 +27,7 @@ namespace QMatrixClient { enum class MessageEventType { - Text, Emote, Notice, Image, File, Location, Video, Audio, Unkown + Text, Emote, Notice, Image, File, Location, Video, Audio, Unknown }; class MessageEventContent @@ -115,4 +115,4 @@ namespace QMatrixClient } -#endif // QMATRIXCLIENT_ROOMMESSAGEEVENT_H \ No newline at end of file +#endif // QMATRIXCLIENT_ROOMMESSAGEEVENT_H -- cgit v1.2.3