Browse Source

During shutdown of the plugin framework, also stop all plug-ins.

Sascha Zelzer 10 years ago
parent
commit
87060ae009
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Libs/PluginFramework/ctkPluginFrameworkLauncher.cpp

+ 2 - 1
Libs/PluginFramework/ctkPluginFrameworkLauncher.cpp

@@ -510,7 +510,8 @@ void ctkPluginFrameworkLauncher::shutdown()
   //appLauncher = null;
   //splashStreamRegistration = null;
   //defaultMonitorRegistration = null;
-  d->fwFactory.reset();
+  //d->fwFactory.reset();
+  stop();
   d->running = false;
 }