diff options
author | Thomas Zander <zander@kde.org> | 2011-08-16 09:56:31 +0200 |
---|---|---|
committer | Thomas Zander <zander@kde.org> | 2011-08-17 19:12:55 +0200 |
commit | c3f9448a94baa423eed5977c9e66cd7be9b73a76 (patch) | |
tree | 2782b00aa4ebdcd49f5127072157fee898887670 | |
parent | Fix non const code in the adblockwidget (diff) | |
download | rekonq-c3f9448a94baa423eed5977c9e66cd7be9b73a76.tar.xz |
Revert "Fix quit action"
This reverts commit 725724b15d739233c4a8fc0cd416bf602288d4b2.
-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 73109881..b9485bf3 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(rApp, SLOT(quit()), actionCollection()); + KStandardAction::quit(this , SLOT(close()), actionCollection()); a = KStandardAction::find(m_findBar, SLOT(show()), actionCollection()); KShortcut findShortcut = KStandardShortcut::find(); |