diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-11-10 16:14:11 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-11-10 16:14:11 +0100 |
commit | 8257f3980e77ddf568c4f286de11c5a73bc7c27f (patch) | |
tree | d6c45320e1face3c9e75dffca100e29ec68bba42 /src/history.cpp | |
parent | Changing homepage.* --> newtabpage.* and fixing API (diff) | |
download | rekonq-8257f3980e77ddf568c4f286de11c5a73bc7c27f.tar.xz |
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
Diffstat (limited to 'src/history.cpp')
-rw-r--r-- | src/history.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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()); |