aboutsummaryrefslogtreecommitdiff
path: root/lib/events/eventcontent.h
diff options
context:
space:
mode:
authorDavid Faure <faure@kde.org>2020-11-26 22:32:55 +0100
committerDavid Faure <faure@kde.org>2020-11-26 22:32:55 +0100
commit17d6e00597fdc1c8f25808735cbc728c4a6b3506 (patch)
treef27be06719da60306413cfb62d6eb578d69bdf98 /lib/events/eventcontent.h
parent21554bccc39ab2f63869c244ed880686805887cb (diff)
downloadlibquotient-17d6e00597fdc1c8f25808735cbc728c4a6b3506.tar.gz
libquotient-17d6e00597fdc1c8f25808735cbc728c4a6b3506.zip
Enable QT_NO_URL_CAST_FROM_STRING and QT_STRICT_ITERATORS.
* QT_NO_URL_CAST_FROM_STRING makes it clearer where QUrls are created from QStrings (which incurs a parsing cost). * QT_STRICT_ITERATORS helps detecting where begin()/end() is used instead of cbegin()/cend(). KDE developers have verified that the generated assembly code is identical.
Diffstat (limited to 'lib/events/eventcontent.h')
-rw-r--r--lib/events/eventcontent.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/events/eventcontent.h b/lib/events/eventcontent.h
index 0d4c047e..9c167d4b 100644
--- a/lib/events/eventcontent.h
+++ b/lib/events/eventcontent.h
@@ -189,7 +189,7 @@ namespace EventContent {
using InfoT::InfoT;
explicit UrlBasedContent(const QJsonObject& json)
: TypedBase(json)
- , InfoT(json["url"].toString(), json["info"].toObject(),
+ , InfoT(QUrl(json["url"].toString()), json["info"].toObject(),
json["filename"].toString())
{
// A small hack to facilitate links creation in QML.