summaryrefslogtreecommitdiff
path: root/src/newtabpage.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-07-06 22:46:16 +0200
committerAndrea Diamantini <adjam7@gmail.com>2012-07-06 22:46:16 +0200
commit67ed4f88998e30b90cfcb93cd8e6bd7e4d0ae7bd (patch)
tree2cf2c3b2034265ee4111cce99c03466c6314c745 /src/newtabpage.cpp
parentFixed a line that was calling QString::startsWith() without args. Fixed build. (diff)
downloadrekonq-67ed4f88998e30b90cfcb93cd8e6bd7e4d0ae7bd.tar.xz
Fix adblock hide behavior
NOTE: You'll find also some style & copyrights fixes here. Just reenable the git hooks scripts... BUG: 302050
Diffstat (limited to 'src/newtabpage.cpp')
-rw-r--r--src/newtabpage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newtabpage.cpp b/src/newtabpage.cpp
index 3cd241a4..89363fe4 100644
--- a/src/newtabpage.cpp
+++ b/src/newtabpage.cpp
@@ -966,7 +966,7 @@ void NewTabPage::createBookmarkItem(const KBookmark &bookmark, QWebElement paren
bookmarkElement.lastChild().setAttribute(QL1S("width") , QL1S("16"));
bookmarkElement.lastChild().setAttribute(QL1S("height") , QL1S("16"));
bookmarkElement.appendInside(QL1S(" "));
- bookmarkElement.appendInside( checkTitle(bookmark.fullText(), 40) );
+ bookmarkElement.appendInside(checkTitle(bookmark.fullText(), 40));
}
}