diff options
author | Alexander Volkov <a.volkov@rusbitech.ru> | 2014-09-05 15:06:28 +0400 |
---|---|---|
committer | Karsten Heimrich <karsten.heimrich@digia.com> | 2014-09-11 11:15:43 +0200 |
commit | c19d0217a515561bff8003e35ad233e27c16abf9 (patch) | |
tree | b945f639e304dba86f6befe71bc45e3b1482b868 | |
parent | de1ef8eb53921181c88e9ebd23d9f3059b09d44a (diff) | |
download | qttools-c19d0217a515561bff8003e35ad233e27c16abf9.tar.gz qttools-c19d0217a515561bff8003e35ad233e27c16abf9.tar.bz2 qttools-c19d0217a515561bff8003e35ad233e27c16abf9.zip |
Assistant: Fix a name of a bookmarks folder
The folder named "Toolbar Menu" is meant to contain bookmarks which
are displayed on the bookmarks toolbar rather than in some menu.
So the name "Bookmarks Toolbar" is more appropriate, besides it is
consistent with Firefox and is similar to Chromium's "Bookmarks bar".
Change-Id: I1b1c359ee4ca02dcd34afff01326442c5d9b4459
Reviewed-by: Karsten Heimrich <karsten.heimrich@digia.com>
-rw-r--r-- | src/assistant/assistant/bookmarkmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/assistant/assistant/bookmarkmodel.cpp b/src/assistant/assistant/bookmarkmodel.cpp index bc067760..c1485ca6 100644 --- a/src/assistant/assistant/bookmarkmodel.cpp +++ b/src/assistant/assistant/bookmarkmodel.cpp @@ -97,7 +97,7 @@ BookmarkModel::setBookmarks(const QByteArray &bookmarks) stream >> version; if (version < VERSION) { stream.device()->seek(0); - BookmarkItem* toolbar = new BookmarkItem(DataVector() << tr("Toolbar Menu") + BookmarkItem* toolbar = new BookmarkItem(DataVector() << tr("Bookmarks Toolbar") << QLatin1String("Folder") << true); rootItem->addChild(toolbar); |