Changeset 5801 for code/branches/core5/src/orxonox/infos
- Timestamp:
- Sep 26, 2009, 10:25:03 PM (15 years ago)
- Location:
- code/branches/core5/src/orxonox/infos
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core5/src/orxonox/infos/HumanPlayer.cc
r5738 r5801 64 64 { 65 65 if (this->humanHud_) 66 delete this->humanHud_;66 this->humanHud_->destroy(); 67 67 68 68 if (this->gametypeHud_) 69 delete this->gametypeHud_;69 this->gametypeHud_->destroy(); 70 70 } 71 71 } … … 170 170 if (this->humanHud_) 171 171 { 172 delete this->humanHud_;172 this->humanHud_->destroy(); 173 173 this->humanHud_ = 0; 174 174 } … … 186 186 if (this->gametypeHud_) 187 187 { 188 delete this->gametypeHud_;188 this->gametypeHud_->destroy(); 189 189 this->gametypeHud_ = 0; 190 190 } -
code/branches/core5/src/orxonox/infos/PlayerInfo.cc
r5738 r5801 66 66 if (this->controller_) 67 67 { 68 delete this->controller_;68 this->controller_->destroy(); 69 69 this->controller_ = 0; 70 70 } … … 131 131 if (this->controller_) 132 132 { 133 delete this->controller_;133 this->controller_->destroy(); 134 134 this->controller_ = 0; 135 135 }
Note: See TracChangeset
for help on using the changeset viewer.