diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2013-05-21 09:28:45 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2013-06-06 23:48:27 +0200 |
commit | 3d0017226abe2f2b42787de12fea2ba7cdc668be (patch) | |
tree | a7bfdf7fd156f127945a8b491d47aa38c0e3c75f /src/history | |
parent | Use webkit general font to render rekonq pages (diff) | |
download | rekonq-3d0017226abe2f2b42787de12fea2ba7cdc668be.tar.xz |
Move from about: to rekonq: protocol for our special links
Diffstat (limited to 'src/history')
-rw-r--r-- | src/history/historymanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/history/historymanager.cpp b/src/history/historymanager.cpp index 2fab9cf1..858d441f 100644 --- a/src/history/historymanager.cpp +++ b/src/history/historymanager.cpp @@ -132,8 +132,8 @@ void HistoryManager::addHistoryEntry(const KUrl &url, const QString &title) QUrl urlToClean(url); - // don't store about: urls (home page related) - if (urlToClean.scheme() == QString("about")) + // don't store rekonq: urls (home page related) + if (urlToClean.scheme() == QString("rekonq")) return; urlToClean.setPassword(QString()); |