diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-08-11 00:17:29 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-08-11 00:17:29 +0200 |
commit | 950f88fc0d4fea8702167b1b1ae4bc387b8d0821 (patch) | |
tree | 510ea5867589da5414367afa9e687354a0977c3a /src/newtabpage.cpp | |
parent | Merge commit 'refs/merge-requests/160' of git://gitorious.org/rekonq/mainline... (diff) | |
parent | - Fix bookmarks' text which is truncated in some places (new tab page, some d... (diff) | |
download | rekonq-950f88fc0d4fea8702167b1b1ae4bc387b8d0821.tar.xz |
Merge commit 'refs/merge-requests/161' of git://gitorious.org/rekonq/mainline into m161
Diffstat (limited to 'src/newtabpage.cpp')
-rw-r--r-- | src/newtabpage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newtabpage.cpp b/src/newtabpage.cpp index bbf6714e..62b97d4d 100644 --- a/src/newtabpage.cpp +++ b/src/newtabpage.cpp @@ -472,7 +472,7 @@ void NewTabPage::createBookItem(const KBookmark &bookmark, QWebElement parent) KBookmarkGroup group = bookmark.toGroup(); KBookmark bm = group.first(); parent.appendInside(markup("h3")); - parent.lastChild().setPlainText(group.text()); + parent.lastChild().setPlainText(group.fullText()); parent.appendInside(markup(".bookfolder")); while (!bm.isNull()) { @@ -488,7 +488,7 @@ void NewTabPage::createBookItem(const KBookmark &bookmark, QWebElement parent) { parent.appendInside(markup("a")); parent.lastChild().setAttribute("href" , bookmark.url().prettyUrl()); - parent.lastChild().setPlainText(bookmark.text()); + parent.lastChild().setPlainText(bookmark.fullText()); parent.appendInside("<br/>"); } } |