diff options
Diffstat (limited to 'src/webview.cpp')
-rw-r--r-- | src/webview.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/webview.cpp b/src/webview.cpp index 55ed4003..c015a941 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -126,6 +126,15 @@ bool WebPage::acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &r return false; } #endif + + 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.. @@ -498,3 +507,4 @@ void WebView::keyPressEvent(QKeyEvent *event) QWebView::keyPressEvent(event); } + |