summaryrefslogtreecommitdiff
path: root/src/webwindow/webwindow.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2014-01-04 11:01:13 +0100
committerAndrea Diamantini <adjam7@gmail.com>2014-01-04 11:01:13 +0100
commit70175cc6724e7f84e9ae0ba1d42ce26002a9492b (patch)
treeaee8cda0373d01a049ed5edd967ecc1b3c015f88 /src/webwindow/webwindow.cpp
parentFix inconsistent dll linkage - those sources aren't being used for a shared lib. (diff)
downloadrekonq-70175cc6724e7f84e9ae0ba1d42ce26002a9492b.tar.xz
Save Action (to re-enable CTRL + S)
Diffstat (limited to 'src/webwindow/webwindow.cpp')
-rw-r--r--src/webwindow/webwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/webwindow/webwindow.cpp b/src/webwindow/webwindow.cpp
index bb857ec4..ee63e4d6 100644
--- a/src/webwindow/webwindow.cpp
+++ b/src/webwindow/webwindow.cpp
@@ -213,7 +213,7 @@ void WebWindow::setupActions()
// Standard Actions
KStandardAction::open(this, SLOT(fileOpen()), actionCollection());
- KStandardAction::saveAs(this, SLOT(fileSaveAs()), actionCollection());
+ KStandardAction::save(this, SLOT(fileSave()), actionCollection());
KStandardAction::print(_tab, SLOT(printFrame()), actionCollection());
KStandardAction::preferences(this, SLOT(preferences()), actionCollection());
KStandardAction::keyBindings(this, SLOT(keyBindings()), actionCollection());
@@ -755,7 +755,7 @@ void WebWindow::fileOpen()
}
-void WebWindow::fileSaveAs()
+void WebWindow::fileSave()
{
KUrl srcUrl = url();