From 79b0bac01d82f8fa5f67bf288eab1ca8433fac8b Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Sun, 8 Jul 2012 09:49:43 +0200 Subject: Ensure rekonq will close when deleting last window. BUG: 303149 --- src/mainwindow.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/mainwindow.cpp') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index e0fdf255..a3b222b3 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -125,6 +125,7 @@ MainWindow::MainWindow() { // Setting attributes (just to be sure...) setAttribute(Qt::WA_DeleteOnClose, true); + setAttribute(Qt::WA_QuitOnClose, true); // creating a centralWidget containing panel, m_view and the hidden findbar QWidget *centralWidget = new QWidget; @@ -235,6 +236,7 @@ MainWindow::~MainWindow() rApp->bookmarkManager()->removeBookmarkBar(m_bookmarksBar); rApp->bookmarkManager()->removeBookmarkPanel(m_bookmarksPanel); + rApp->removeMainWindow(this); } @@ -657,6 +659,7 @@ void MainWindow::finalizeGUI(KXMLGUIClient* client) << " ====================== "; } + void MainWindow::readProperties(const KConfigGroup& config) { Q_UNUSED(config) @@ -664,6 +667,7 @@ void MainWindow::readProperties(const KConfigGroup& config) Application::instance()->sessionManager()->restoreMainWindow(this); } + void MainWindow::openLocation() { if (isFullScreen()) -- cgit v1.2.1