From 6d24915e4bdd56dbdace8358297ee9d2d9aa83a0 Mon Sep 17 00:00:00 2001
From: Alexey Rusakov <Kitsune-Ral@users.sf.net>
Date: Sun, 18 Jul 2021 18:53:57 +0200
Subject: Revert previous commit

Q_DECLARE_METATYPE is really unhappy about types without
a public default constructor.
---
 lib/events/eventcontent.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'lib')

diff --git a/lib/events/eventcontent.h b/lib/events/eventcontent.h
index b3a5f280..78c5b287 100644
--- a/lib/events/eventcontent.h
+++ b/lib/events/eventcontent.h
@@ -153,13 +153,13 @@ namespace EventContent {
 
     class TypedBase : public Base {
     public:
+        explicit TypedBase(QJsonObject o = {}) : Base(std::move(o)) {}
         virtual QMimeType type() const = 0;
         virtual const FileInfo* fileInfo() const { return nullptr; }
         virtual FileInfo* fileInfo() { return nullptr; }
         virtual const Thumbnail* thumbnailInfo() const { return nullptr; }
 
     protected:
-        explicit TypedBase(QJsonObject o = {}) : Base(std::move(o)) {}
         using Base::Base;
     };
 
-- 
cgit v1.2.3