diff options
author | Yoann Laissus <yoann.laissus@gmail.com> | 2010-08-10 15:07:56 +0200 |
---|---|---|
committer | Yoann Laissus <yoann.laissus@gmail.com> | 2010-08-10 15:07:56 +0200 |
commit | e9e94ec1c9b7ca214d6a7e04ed0c28c363b77957 (patch) | |
tree | 02e278c4b2b239c065b8baefd863f728592097d3 /src/bookmarks/bookmarkspanel.cpp | |
parent | Merge branch 'm155' (diff) | |
download | rekonq-e9e94ec1c9b7ca214d6a7e04ed0c28c363b77957.tar.xz |
- Fix bookmarks' text which is truncated in some places (new tab page, some dialogues, ...)
- Fix bookmark icons with the bookmark panel
BUG: 247196
Diffstat (limited to 'src/bookmarks/bookmarkspanel.cpp')
-rw-r--r-- | src/bookmarks/bookmarkspanel.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bookmarks/bookmarkspanel.cpp b/src/bookmarks/bookmarkspanel.cpp index 5e11601a..75d8faf3 100644 --- a/src/bookmarks/bookmarkspanel.cpp +++ b/src/bookmarks/bookmarkspanel.cpp @@ -220,11 +220,12 @@ void BookmarksPanel::deleteBookmark() KBookmark bm = bookmarkForIndex(index); KBookmarkGroup bmg = bm.parentGroup(); bool folder = bm.isGroup(); + QString name = QString(bm.fullText()).replace("&&", "&"); if (KMessageBox::warningContinueCancel( QApplication::activeWindow(), - folder ? i18n("Are you sure you wish to remove the bookmark folder\n\"%1\"?", bm.text()) - : i18n("Are you sure you wish to remove the bookmark\n\"%1\"?", bm.text()), + folder ? i18n("Are you sure you wish to remove the bookmark folder\n\"%1\"?", name) + : i18n("Are you sure you wish to remove the bookmark\n\"%1\"?", name), folder ? i18n("Bookmark Folder Deletion") : i18n("Bookmark Deletion"), KStandardGuiItem::del(), |