summaryrefslogtreecommitdiff
path: root/src/newtabpage.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-08-11 00:17:29 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-08-11 00:17:29 +0200
commit950f88fc0d4fea8702167b1b1ae4bc387b8d0821 (patch)
tree510ea5867589da5414367afa9e687354a0977c3a /src/newtabpage.cpp
parentMerge 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)
downloadrekonq-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.cpp4
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/>");
}
}