diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-08-28 17:56:03 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-09-08 05:57:20 +0200 |
commit | e23bf213f735d4c96f690909dea0c17633450502 (patch) | |
tree | 7c49fd5f204555a1b81c1c4ecf90f3cb009206db /src | |
parent | Use tooltip style in tabpreview (diff) | |
download | rekonq-e23bf213f735d4c96f690909dea0c17633450502.tar.xz |
Revert "Revert "Fix quit action""
This reverts commit c3f9448a94baa423eed5977c9e66cd7be9b73a76.
Let the quit action really work
Diffstat (limited to 'src')
-rw-r--r-- | src/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 28480d03..84068837 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -322,7 +322,7 @@ void MainWindow::setupActions() KStandardAction::open(this, SLOT(fileOpen()), actionCollection()); KStandardAction::saveAs(this, SLOT(fileSaveAs()), actionCollection()); KStandardAction::print(this, SLOT(printRequested()), actionCollection()); - KStandardAction::quit(this , SLOT(close()), actionCollection()); + KStandardAction::quit(rApp, SLOT(quit()), actionCollection()); a = KStandardAction::find(m_findBar, SLOT(show()), actionCollection()); KShortcut findShortcut = KStandardShortcut::find(); |