summaryrefslogtreecommitdiff
path: root/src/plugins/fakevim/fakevimplugin.cpp
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-10-25 11:27:30 +0200
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-10-25 11:27:30 +0200
commit35bb61590da4d24664e339337843194c5dab8d8d (patch)
tree82077f9c03950afcc8cb48bbc00a751cbb190e5d /src/plugins/fakevim/fakevimplugin.cpp
parent3b2614c6976ff1b201855893a811702376721eb9 (diff)
parent49bb852292249e9e5801b792f9febc195e996ec5 (diff)
downloadqt-creator-35bb61590da4d24664e339337843194c5dab8d8d.tar.gz
Merge remote branch 'origin/2.1'
Conflicts: doc/qtcreator.qdoc share/qtcreator/templates/mobileapp/app.pro
Diffstat (limited to 'src/plugins/fakevim/fakevimplugin.cpp')
-rw-r--r--src/plugins/fakevim/fakevimplugin.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/plugins/fakevim/fakevimplugin.cpp b/src/plugins/fakevim/fakevimplugin.cpp
index 8aacac7c70..6273cdd461 100644
--- a/src/plugins/fakevim/fakevimplugin.cpp
+++ b/src/plugins/fakevim/fakevimplugin.cpp
@@ -491,6 +491,7 @@ public:
void aboutToShutdown();
private slots:
+ void onCoreAboutToClose();
void editorOpened(Core::IEditor *);
void editorAboutToClose(Core::IEditor *);
@@ -583,6 +584,13 @@ FakeVimPluginPrivate::~FakeVimPluginPrivate()
m_fakeVimExCommandsPage = 0;
}
+void FakeVimPluginPrivate::onCoreAboutToClose()
+{
+ // don't attach to editors any more
+ disconnect(editorManager(), SIGNAL(editorOpened(Core::IEditor*)),
+ this, SLOT(editorOpened(Core::IEditor*)));
+}
+
void FakeVimPluginPrivate::aboutToShutdown()
{
theFakeVimSettings()->writeSettings(ICore::instance()->settings());
@@ -615,6 +623,8 @@ bool FakeVimPluginPrivate::initialize()
actionManager()->actionContainer(Core::Constants::M_EDIT_ADVANCED);
advancedMenu->addAction(cmd, Core::Constants::G_EDIT_EDITOR);
+ connect(m_core, SIGNAL(coreAboutToClose()), this, SLOT(onCoreAboutToClose()));
+
// EditorManager
connect(editorManager(), SIGNAL(editorAboutToClose(Core::IEditor*)),
this, SLOT(editorAboutToClose(Core::IEditor*)));