Changeset 1220 for code/trunk/src
- Timestamp:
- May 2, 2008, 10:58:22 PM (17 years ago)
- Location:
- code/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/InputBuffer.cc
r1219 r1220 50 50 //this->bActivated_ = false; 51 51 this->allowedChars_ = allowedChars; 52 this->keyboard_ = InputManager::get Singleton().getKeyboard();52 this->keyboard_ = InputManager::getKeyboard(); 53 53 this->buffer_ = ""; 54 54 } -
code/trunk/src/orxonox/GraphicsEngine.cc
r1214 r1220 297 297 int w = rw->getWidth(); 298 298 int h = rw->getHeight(); 299 InputManager:: getSingleton().setWindowExtents(w, h);299 InputManager::setWindowExtents(w, h); 300 300 } 301 301 … … 303 303 int w = rw->getWidth(); 304 304 int h = rw->getHeight(); 305 InputManager:: getSingleton().setWindowExtents(w, h);305 InputManager::setWindowExtents(w, h); 306 306 } 307 307 … … 309 309 int w = rw->getWidth(); 310 310 int h = rw->getHeight(); 311 InputManager:: getSingleton().setWindowExtents(w, h);311 InputManager::setWindowExtents(w, h); 312 312 } 313 313 }
Note: See TracChangeset
for help on using the changeset viewer.