Changeset 11014 for code/trunk/src/libraries/core/module/PluginManager.cc
- Timestamp:
- Jan 2, 2016, 3:15:04 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/module/PluginManager.cc
r10580 r11014 90 90 Plugin* plugin = this->plugins_[name]; 91 91 if (plugin != NULL) 92 plugin-> load();92 plugin->reference(); 93 93 else 94 94 orxout(internal_warning) << "Cannot find plugin with name " << name << endl; … … 99 99 Plugin* plugin = this->plugins_[name]; 100 100 if (plugin != NULL) 101 plugin-> unload();101 plugin->dereference(); 102 102 else 103 103 orxout(internal_warning) << "Cannot find plugin with name " << name << endl;
Note: See TracChangeset
for help on using the changeset viewer.