summaryrefslogtreecommitdiff
path: root/src/mainview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r--src/mainview.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp
index d796035e..4236d5d0 100644
--- a/src/mainview.cpp
+++ b/src/mainview.cpp
@@ -99,6 +99,15 @@ void MainView::slotWebReload()
}
+void MainView::slotWebStop()
+{
+ WebView *webView = currentWebView();
+ QWebPage *currentParent = webView->webPage();
+ QAction *action = currentParent->action(QWebPage::Stop);
+ action->trigger();
+}
+
+
void MainView::slotWebBack()
{
WebView *webView = currentWebView();