Changeset 6314
- Timestamp:
- Dec 10, 2009, 6:30:13 PM (15 years ago)
- Location:
- code/branches/presentation2/src/orxonox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/src/orxonox/Radar.cc
r6273 r6314 47 47 48 48 Radar::Radar() 49 : focus_(0)50 , itFocus_(0)49 : itFocus_(0) 50 , focus_(0) 51 51 , objectTypeCounter_(0) 52 52 { -
code/branches/presentation2/src/orxonox/items/MultiStateEngine.cc
r6313 r6314 35 35 36 36 #include "util/Convert.h" 37 #include "util/StringUtils.h" 37 38 #include "core/CoreIncludes.h" 38 39 #include "core/GameMode.h" … … 251 252 else 252 253 assert(0); 253 return std::string();254 return BLANKSTRING; 254 255 } 255 256 … … 268 269 else 269 270 assert(0); 270 return std::string();271 return BLANKSTRING; 271 272 } 272 273 } -
code/branches/presentation2/src/orxonox/weaponsystem/WeaponMode.cc
r6307 r6314 30 30 #include "WeaponMode.h" 31 31 32 #include "util/StringUtils.h" 32 33 #include "core/CoreIncludes.h" 33 34 #include "core/XMLPort.h" … … 272 273 return this->defSndWpnFire_->getSource(); 273 274 else 274 return std::string();275 return BLANKSTRING; 275 276 } 276 277 }
Note: See TracChangeset
for help on using the changeset viewer.