diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-05 14:37:07 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-05 18:22:55 +0100 |
commit | 9e3752b8333813b9f00970a1af6e7ca9087ca424 (patch) | |
tree | 85690a737713bf3f00cf7d4bf6c7c2e726f26bc9 /lib/events | |
parent | ecbff4c1a21ff4c0ab72141bc1a34ae189d33483 (diff) | |
download | libquotient-9e3752b8333813b9f00970a1af6e7ca9087ca424.tar.gz libquotient-9e3752b8333813b9f00970a1af6e7ca9087ca424.zip |
Thumbnail: drop unneeded constructors
Those are already inherited with 'using'.
Diffstat (limited to 'lib/events')
-rw-r--r-- | lib/events/eventcontent.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/events/eventcontent.h b/lib/events/eventcontent.h index 87ea3672..de9a792b 100644 --- a/lib/events/eventcontent.h +++ b/lib/events/eventcontent.h @@ -149,10 +149,8 @@ namespace EventContent { */ class QUOTIENT_API Thumbnail : public ImageInfo { public: - Thumbnail() = default; // Allow empty thumbnails - Thumbnail(const QJsonObject& infoJson, const Omittable<EncryptedFile> &file = none); - Thumbnail(const ImageInfo& info) : ImageInfo(info) {} using ImageInfo::ImageInfo; + Thumbnail(const QJsonObject& infoJson, const Omittable<EncryptedFile> &file = none); /** * Writes thumbnail information to "thumbnail_info" subobject |