diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-08 10:59:12 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-08 10:59:12 +0200 |
commit | 11fa0d96626b4417718aeef2cf8316a97bce02ed (patch) | |
tree | 64e3487cf26586bb33aa2ba6c54e5bc7a7eb5448 /src/mainwindow.cpp | |
parent | Removed unuseful commented code (diff) | |
download | rekonq-11fa0d96626b4417718aeef2cf8316a97bce02ed.tar.xz |
Asking user to close rekonq if there are more than 1 tabs opened..
(Oh, Dear.. my English..)
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 20020ca3..249dd389 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -763,4 +763,21 @@ void MainWindow::slotShowMenubar(bool enable) menuBar()->show(); else menuBar()->hide(); +} + + +bool MainWindow::queryClose() +{ + if (m_view->count() > 1) + { + int ret = KMessageBox::warningYesNo(this, + i18n("Are you sure you want to close the window?" " There are %1 tab open" , m_view->count() ), + i18n("Closing") + ); + if (ret == KMessageBox::No) + { + return false; + } + } + return true; }
\ No newline at end of file |