aboutsummaryrefslogtreecommitdiff
path: root/lib/bookmarks/formats/xbel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bookmarks/formats/xbel.cpp')
-rw-r--r--lib/bookmarks/formats/xbel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bookmarks/formats/xbel.cpp b/lib/bookmarks/formats/xbel.cpp
index bac2bc8..7ff79a9 100644
--- a/lib/bookmarks/formats/xbel.cpp
+++ b/lib/bookmarks/formats/xbel.cpp
@@ -32,7 +32,7 @@ inline void readChildElements(QXmlStreamReader &reader, BookmarkItem *parent)
} else if(reader.name() == "folder") {
auto *item = new BookmarkItem({}, BookmarkItem::Folder, parent);
- item->setExpanded(!(reader.attributes().value("folded") == QLatin1Literal("yes")));
+ item->setExpanded(!(reader.attributes().value("folded") == QLatin1String("yes")));
parent->appendChild(item);
readChildElements(reader, item);