diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-01-02 11:01:21 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-01-02 11:01:21 +0100 |
commit | 4779e1fa7346416ac61b0787c065e3104442efad (patch) | |
tree | 103dba178c9b153999161094f9ab6ee4187a1f64 /src/protocolhandler.cpp | |
parent | Fix crash webinspector related (diff) | |
download | rekonq-4779e1fa7346416ac61b0787c065e3104442efad.tar.xz |
about:tabs, easy method to manage rekonq tabs.
- added tabs page to rekonq ones
- manage about:tabs links
- let it manage show/close tabs
- fix settings for the new page
- adjust controls for it (modify, add thing removed)
REVIEW:103566
Diffstat (limited to 'src/protocolhandler.cpp')
-rw-r--r-- | src/protocolhandler.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/protocolhandler.cpp b/src/protocolhandler.cpp index 9bd029f2..ebb12e8f 100644 --- a/src/protocolhandler.cpp +++ b/src/protocolhandler.cpp @@ -159,6 +159,9 @@ bool ProtocolHandler::preHandling(const QNetworkRequest &request, QWebFrame *fra break; case 4: // downloads _url = KUrl("about:downloads"); + break; + case 5: // tabs + _url = KUrl("about:tabs"); default: // unuseful break; } |