diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-02-21 00:46:45 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-02-21 00:46:45 +0100 |
commit | 2f21d0ed14647ee361538f7adcf7c8013d47c872 (patch) | |
tree | 93b5e2baf3a42a94abe8b11ec3c8f790d22ecf89 | |
parent | Merge branch 'mr92' (diff) | |
download | rekonq-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 :)
-rw-r--r-- | src/protocolhandler.cpp | 4 |
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") ) |