summaryrefslogtreecommitdiff
path: root/src/webview.cpp
diff options
context:
space:
mode:
authoradjam <adjam@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-05-06 23:59:13 +0000
committeradjam <adjam@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-05-06 23:59:13 +0000
commit9d0b48c6b16dc00096e828f31bb88ff9cfd43689 (patch)
tree63741236fe7b30f026ca2ae3a4a350d84a71521d /src/webview.cpp
parentupdated TODO (diff)
downloadrekonq-9d0b48c6b16dc00096e828f31bb88ff9cfd43689.tar.xz
Fixing forgotten merging issues..
git-svn-id: svn+ssh://svn.kde.org/home/kde/trunk/playground/network/rekonq@964617 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/webview.cpp')
-rw-r--r--src/webview.cpp11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/webview.cpp b/src/webview.cpp
index c015a941..5842ae4f 100644
--- a/src/webview.cpp
+++ b/src/webview.cpp
@@ -91,11 +91,12 @@ bool WebPage::acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &r
// An HTML form was submitted a second time.
case QWebPage::NavigationTypeFormResubmitted:
kDebug() << "NavigationTypeFormResubmitted";
-
+ break;
// A navigation to another document using a method not listed above.
case QWebPage::NavigationTypeOther:
kDebug() << "NavigationTypeOther";
+ break;
// user clicked on a link or pressed return on a focused link.
case QWebPage::NavigationTypeLinkClicked:
@@ -129,14 +130,6 @@ bool WebPage::acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &r
break;
- // An HTML form was submitted a second time.
- case QWebPage::NavigationTypeFormResubmitted:
- break;
-
- // A navigation to another document using a method not listed above.
- case QWebPage::NavigationTypeOther:
- break;
-
// should be nothing..
default:
kDebug() << "Default NON existant case..";