Changeset 5867 for code/branches/core5/src/libraries/core
- Timestamp:
- Oct 4, 2009, 12:02:28 AM (15 years ago)
- Location:
- code/branches/core5/src/libraries/core
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core5/src/libraries/core/CMakeLists.txt
r5855 r5867 37 37 PathConfig.cc 38 38 Resource.cc 39 ScopedSingletonManager.cc 39 40 WindowEventListener.cc 40 41 -
code/branches/core5/src/libraries/core/Core.cc
r5863 r5867 65 65 #include "Language.h" 66 66 #include "LuaState.h" 67 #include "ScopedSingletonManager.h" 67 68 #include "Shell.h" 68 69 #include "TclBind.h" … … 433 434 { 434 435 // singletons from other libraries 435 Scope <ScopeID::Root>::update(time);436 ScopedSingletonManager::update(time, ScopeID::Root); 436 437 if (this->bGraphicsLoaded_) 437 438 { … … 441 442 this->guiManager_->update(time); 442 443 // graphics singletons from other libraries 443 Scope <ScopeID::Graphics>::update(time);444 ScopedSingletonManager::update(time, ScopeID::Graphics); 444 445 } 445 446 // process thread commands
Note: See TracChangeset
for help on using the changeset viewer.