Changeset 10552 for code/branches/core7/src/libraries/core/Core.cc
- Timestamp:
- Aug 27, 2015, 11:05:18 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/libraries/core/Core.cc
r10551 r10552 76 76 #include "module/ModuleInstance.h" 77 77 #include "module/StaticInitializationManager.h" 78 #include "module/PluginManager.h" 78 79 #include "CoreStaticInitializationHandler.h" 79 80 #include "UpdateListener.h" … … 111 112 , bGraphicsLoaded_(false) 112 113 , staticInitHandler_(NULL) 114 , pluginManager_(NULL) 113 115 , rootModule_(NULL) 114 116 , config_(NULL) … … 197 199 this->staticInitHandler_->initInstances(this->rootModule_); 198 200 this->staticInitHandler_->setInitInstances(true); 201 202 // Create plugin manager and search for plugins 203 this->pluginManager_ = new PluginManager(); 204 this->pluginManager_->findPlugins(); 199 205 200 206 // Loader … … 248 254 safeObjectDelete(&configFileManager_); 249 255 safeObjectDelete(&signalHandler_); 256 safeObjectDelete(&pluginManager_); 250 257 Context::getRootContext()->unregisterObject(); // unregister context from object lists - otherwise the root context would be destroyed while unloading the root module 251 258 if (this->rootModule_)
Note: See TracChangeset
for help on using the changeset viewer.