summaryrefslogtreecommitdiff
path: root/src/protocolhandler.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-02-21 00:46:45 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-02-21 00:46:45 +0100
commit2f21d0ed14647ee361538f7adcf7c8013d47c872 (patch)
tree93b5e2baf3a42a94abe8b11ec3c8f790d22ecf89 /src/protocolhandler.cpp
parentMerge branch 'mr92' (diff)
downloadrekonq-2f21d0ed14647ee361538f7adcf7c8013d47c872.tar.xz
A stupid regression caused by me. When I'll decide to implement
some unit tests for this, we'll no more see things like this :)
Diffstat (limited to 'src/protocolhandler.cpp')
-rw-r--r--src/protocolhandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocolhandler.cpp b/src/protocolhandler.cpp
index 1a533a6e..ffeea562 100644
--- a/src/protocolhandler.cpp
+++ b/src/protocolhandler.cpp
@@ -108,10 +108,10 @@ bool ProtocolHandler::preHandling(const QNetworkRequest &request, QWebFrame *fra
// "about" handling
if ( _url.protocol() == QLatin1String("about") )
{
+ // let webkit manage the about:blank url...
if( _url == KUrl("about:blank") )
{
- frame->setHtml( QString() , _url );
- return true;
+ return false;
}
if( _url == KUrl("about:home") )