summaryrefslogtreecommitdiff
path: root/src/application.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-08-10 15:31:03 +0200
committerAndrea Diamantini <adjam7@gmail.com>2012-12-10 02:48:05 +0100
commit06794b6a16187fd1a0f947188f0f5988b80c380b (patch)
tree6ade3427aa8de28309a117da34931862661f9786 /src/application.cpp
parentmain options (diff)
downloadrekonq-06794b6a16187fd1a0f947188f0f5988b80c380b.tar.xz
Clean up remove tab window mechanism
Diffstat (limited to 'src/application.cpp')
-rw-r--r--src/application.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/application.cpp b/src/application.cpp
index 4f1b623b..7004a901 100644
--- a/src/application.cpp
+++ b/src/application.cpp
@@ -333,7 +333,7 @@ TabWindow *Application::newTabWindow()
// set object name
int n = m_tabWindows.count() + 1;
w->setObjectName( QL1S("win") + QString::number(n) );
-
+
// This is used to track which window was activated most recently
w->installEventFilter(this);
@@ -344,17 +344,6 @@ TabWindow *Application::newTabWindow()
}
-void Application::removeTabWindow(TabWindow *window)
-{
- m_tabWindows.removeOne(window);
- kDebug() << "Removing Window from app window list...";
-
- // bye bye...
- if (m_tabWindows.count() == 0)
- quit();
-}
-
-
TabWindowList Application::tabWindowList()
{
return m_tabWindows;
@@ -379,6 +368,17 @@ bool Application::eventFilter(QObject* watched, QEvent* event)
}
}
+ // As we are filtering the events occurred to the tabwindows, check also
+ // when we close one of them, remove from tab window list and check if it was last...
+ if (event->type() == QEvent::Close)
+ {
+ TabWindow *window = qobject_cast<TabWindow*>(watched);
+ m_tabWindows.removeOne(window);
+
+ if (m_tabWindows.count() == 0)
+ quit();
+ }
+
return QObject::eventFilter(watched, event);
}