From 8257f3980e77ddf568c4f286de11c5a73bc7c27f Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Tue, 10 Nov 2009 16:14:11 +0100 Subject: switching back from rekonq: protocol to about: one This is the more logical solution and let rekonq working also with the upcoming Qt4.6. (QWebView::setHtml() trouble) Anyway we have a little regression in the urlbar clean && select --- src/history.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/history.cpp') diff --git a/src/history.cpp b/src/history.cpp index 0db73b76..07580433 100644 --- a/src/history.cpp +++ b/src/history.cpp @@ -114,8 +114,8 @@ void HistoryManager::addHistoryEntry(const QString &url) { QUrl cleanUrl(url); - // don't store rekonq: urls (home page related) - if(cleanUrl.scheme() == QString("rekonq")) + // don't store about: urls (home page related) + if(cleanUrl.scheme() == QString("about")) return; cleanUrl.setPassword(QString()); -- cgit v1.2.1