aboutsummaryrefslogtreecommitdiff
path: root/lib/events/stickerevent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/events/stickerevent.cpp')
-rw-r--r--lib/events/stickerevent.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/events/stickerevent.cpp b/lib/events/stickerevent.cpp
deleted file mode 100644
index 628fd154..00000000
--- a/lib/events/stickerevent.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-// SDPX-FileCopyrightText: 2020 Carl Schwan <carlschwan@kde.org>
-// SPDX-License-Identifier: LGPL-2.1-or-later
-
-#include "stickerevent.h"
-
-using namespace Quotient;
-
-StickerEvent::StickerEvent(const QJsonObject &obj)
- : RoomEvent(typeId(), obj)
- , m_imageContent(EventContent::ImageContent(obj["content"_ls].toObject()))
-{}
-
-QString StickerEvent::body() const
-{
- return contentPart<QString>("body"_ls);
-}
-
-const EventContent::ImageContent &StickerEvent::image() const
-{
- return m_imageContent;
-}
-
-QUrl StickerEvent::url() const
-{
- return m_imageContent.url;
-}