Changeset 6799
- Timestamp:
- Apr 29, 2010, 12:57:23 PM (15 years ago)
- Location:
- code/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/overlays/GUIOverlay.cc
r6753 r6799 76 76 out << reinterpret_cast<long>(this); 77 77 const std::string& str = out.str(); 78 COUT(1) << "GUIManager ptr: " << str << std::endl;79 78 GUIManager::getInstance().showGUIExtra(this->guiName_, str); 80 79 81 COUT( 3) << "Showing GUI " << this->guiName_ << std::endl;80 COUT(4) << "Showing GUI " << this->guiName_ << std::endl; 82 81 } 83 82 else 84 83 { 85 84 GUIManager::hideGUI(this->guiName_); 86 COUT( 3) << "Hiding GUI " << this->guiName_ << std::endl;85 COUT(4) << "Hiding GUI " << this->guiName_ << std::endl; 87 86 } 88 87 } -
code/trunk/src/orxonox/overlays/OrxonoxOverlay.cc
r6711 r6799 327 327 { 328 328 OrxonoxOverlay* overlay= it->second; 329 COUT(1) << "MUP" << std::endl;330 329 if(overlay->isVisible()) 331 330 { 332 331 overlay->hide(); 333 COUT( 1) << "HIDE " << name << std::endl;332 COUT(4) << "HIDE " << name << std::endl; 334 333 } 335 334 else 336 335 { 337 336 overlay->show(); 338 COUT( 1) << "SHOW " << name << std::endl;337 COUT(4) << "SHOW " << name << std::endl; 339 338 } 340 339 }
Note: See TracChangeset
for help on using the changeset viewer.