Changeset 10768 for code/branches/cpp11_v2/src/orxonox/Level.cc
- Timestamp:
- Nov 6, 2015, 10:54:34 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/orxonox/Level.cc
r10624 r10768 54 54 this->registerVariables(); 55 55 this->xmlfilename_ = this->getFilename(); 56 this->xmlfile_ = 0;56 this->xmlfile_ = nullptr; 57 57 } 58 58 … … 178 178 ++i; 179 179 } 180 return 0;180 return nullptr; 181 181 } 182 182 … … 195 195 return this->lodInformation_.find(meshName)->second; 196 196 197 return 0;197 return nullptr; 198 198 } 199 199 … … 207 207 { 208 208 orxout(internal_info) << "player left level (id: " << player->getClientID() << ", name: " << player->getName() << ')' << endl; 209 player->switchGametype( 0);209 player->switchGametype(nullptr); 210 210 } 211 211 }
Note: See TracChangeset
for help on using the changeset viewer.