Fix build error with the -Werror=return-type flag (#928)

This commit is contained in:
Jaime Marquínez Ferrándiz 2023-04-27 06:48:55 +02:00 committed by GitHub
parent 99b031e4fb
commit 5f6d1a12b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -178,9 +178,11 @@ QString MessageObject::createLabelId(const QString& title, const QString& hex_co
if (hex_color.isEmpty()) {
// Generate color.
return nullptr;
}
// TODO: CONTINUE
return nullptr;
}
void MessageObject::addEnclosure(const QString& url, const QString& mime_type) const {