diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-12-31 05:38:54 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-12-31 05:39:37 +0100 |
commit | 3150fd8efd1d39dbcb836a9d9dbf2bd139ff1418 (patch) | |
tree | cb12e9b8e831a8a3172101be904b778bfbae2cc1 /lib/events | |
parent | 674e984e459375974f619d0e778d43a2cc928dc3 (diff) | |
parent | 418b85c285fa0a0c196a26eef5cc0c9c3dbe20fe (diff) | |
download | libquotient-3150fd8efd1d39dbcb836a9d9dbf2bd139ff1418.tar.gz libquotient-3150fd8efd1d39dbcb836a9d9dbf2bd139ff1418.zip |
Merge: Cleanup across the code base
Diffstat (limited to 'lib/events')
-rw-r--r-- | lib/events/event.h | 2 | ||||
-rw-r--r-- | lib/events/eventcontent.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/events/event.h b/lib/events/event.h index 8f62872d..8347bb4f 100644 --- a/lib/events/event.h +++ b/lib/events/event.h @@ -146,7 +146,7 @@ namespace _impl { // Actual makeIfMatches specialisations will differ in the first // template parameter but that doesn't affect the function type public: - explicit EventFactory(const char* name = "") + explicit EventFactory(const char* name) : name(name) { static auto yetToBeConstructed = true; diff --git a/lib/events/eventcontent.h b/lib/events/eventcontent.h index f609a603..f6dbd4bf 100644 --- a/lib/events/eventcontent.h +++ b/lib/events/eventcontent.h @@ -105,7 +105,7 @@ namespace EventContent { QJsonObject originalInfoJson; QMimeType mimeType; QUrl url; - qint64 payloadSize; + qint64 payloadSize = 0; QString originalName; Omittable<EncryptedFile> file = none; }; |