diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-03-20 22:54:21 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-03-20 22:54:21 +0100 |
commit | a6ef003dd4c1b6ad08eca4f5adaa4679bbc20bce (patch) | |
tree | f8a2aa5daa3e9e68984308a1cb891cc1bd4e3675 /src/protocolhandler.cpp | |
parent | NewTabPage: clean API (diff) | |
download | rekonq-a6ef003dd4c1b6ad08eca4f5adaa4679bbc20bce.tar.xz |
Downloads Page
This commit implements the downloads history page.
While it is in an horrible shape, its slots seem working well
It needs just some love..
Diffstat (limited to 'src/protocolhandler.cpp')
-rw-r--r-- | src/protocolhandler.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/protocolhandler.cpp b/src/protocolhandler.cpp index 9d1560ed..faba894b 100644 --- a/src/protocolhandler.cpp +++ b/src/protocolhandler.cpp @@ -142,6 +142,8 @@ bool ProtocolHandler::preHandling(const QNetworkRequest &request, QWebFrame *fra case 3: // history _url = KUrl("about:history"); break; + case 4: // downloads + _url = KUrl("about:downloads"); default: // unuseful break; } |