summaryrefslogtreecommitdiff
path: root/src/application.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-08-19 21:05:08 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-08-19 21:05:08 +0200
commit61b5cf17fcd4312332a933e68d5ddcf45f281b98 (patch)
tree543ac39768f7e4370ed107188ffc40d518da41c2 /src/application.cpp
parentMerge branch 'master' of gitorious.org:rekonq/mainline (diff)
parentStupid me, QtWebKit calls addHistoryEntry itself when you let it load a page.. (diff)
downloadrekonq-61b5cf17fcd4312332a933e68d5ddcf45f281b98.tar.xz
Merge branch 'HistoryReview3'
Diffstat (limited to 'src/application.cpp')
-rw-r--r--src/application.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/application.cpp b/src/application.cpp
index 8a24014d..5cc3b460 100644
--- a/src/application.cpp
+++ b/src/application.cpp
@@ -451,12 +451,6 @@ void Application::loadResolvedUrl(ThreadWeaver::Job *job)
if (view)
{
view->load(url);
-
- // we are sure of the url now, let's add it to history
- // anyway we store here just http sites because local and ftp ones are
- // added trough the protocol handler and the other are ignored
- if (url.protocol() == QL1S("http") || url.protocol() == QL1S("https"))
- historyManager()->addHistoryEntry(url.prettyUrl());
}
}