Changeset 5800 for code/branches/core5/src/modules/overlays
- Timestamp:
- Sep 26, 2009, 10:21:26 PM (15 years ago)
- Location:
- code/branches/core5/src/modules/overlays
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified code/branches/core5/src/modules/overlays/hud/HUDHealthBar.cc ¶
r5738 r5800 56 56 { 57 57 if (this->isInitialized()) 58 delete this->textoverlay_;58 this->textoverlay_->destroy(); 59 59 } 60 60 -
TabularUnified code/branches/core5/src/modules/overlays/hud/UnderAttackHealthBar.cc ¶
r5738 r5800 58 58 { 59 59 if (this->isInitialized()) 60 delete this->text_;60 this->text_->destroy(); 61 61 } 62 62 -
TabularUnified code/branches/core5/src/modules/overlays/stats/CreateLines.cc ¶
r5738 r5800 59 59 CreateLines::~CreateLines() 60 60 { 61 delete this->playerNameText_;62 delete this->scoreText_;63 delete this->deathsText_;64 delete this->background_;61 this->playerNameText_->destroy(); 62 this->scoreText_->destroy(); 63 this->deathsText_->destroy(); 64 this->background_->destroy(); 65 65 } 66 66
Note: See TracChangeset
for help on using the changeset viewer.