diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-10-08 01:36:09 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-10-08 01:36:09 +0200 |
commit | cbbc7ca17e0e5edccf44bb448839982fc42ca5de (patch) | |
tree | 46225f1f38932f70d08948793700fe60197451cc /src/homepage.cpp | |
parent | fixing right click rekonq crash (at least, hopefully..) (diff) | |
download | rekonq-cbbc7ca17e0e5edccf44bb448839982fc42ca5de.tar.xz |
TONS of events ignored to let homepage no more crash!
Hopefully...
I hope I also not have removed some rekonq features this way. It seems not, anyway
(obviously) it needs tests
Diffstat (limited to 'src/homepage.cpp')
-rw-r--r-- | src/homepage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/homepage.cpp b/src/homepage.cpp index 6aef42a9..3cc908a9 100644 --- a/src/homepage.cpp +++ b/src/homepage.cpp @@ -120,7 +120,7 @@ QString HomePage::fillFavorites() speed += "<object type=\"application/image-preview\" data=\""; speed += urls.at(i) + "\" width=\"200\">"; speed += "</object>"; - speed += "<br /><br />"; + speed += "<br />"; speed += "<a href=\"" + urls.at(i) + "\">" + text + "</a></div>"; } @@ -154,7 +154,7 @@ QString HomePage::lastVisitedSites() last += "<object type=\"application/image-preview\" data=\"" + son.data(HistoryModel::UrlStringRole).toString(); last += "\" width=\"200\">"; last += "</object>"; - last += "<br /><br />"; + last += "<br />"; last += "<a href=\"" + son.data(HistoryModel::UrlStringRole).toString() + "\">" + text + "</a></div>"; sites++; } |