- Timestamp:
- Jan 3, 2005, 12:20:48 PM (20 years ago)
- Location:
- orxonox/branches/updater/src/gui
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/updater/src/gui/orxonox_gui.cc
r3317 r3318 131 131 OrxonoxGui::~OrxonoxGui(void) 132 132 { 133 133 delete video; 134 delete audio; 135 delete exec; 136 delete flags; 137 delete banner; 138 delete keys; 139 delete update; 134 140 } -
orxonox/branches/updater/src/gui/orxonox_gui_audio.cc
r3315 r3318 55 55 } 56 56 57 /** 58 \brief Destructs the Audio-Stuff 59 */ 60 OrxonoxGuiAudio::~OrxonoxGuiAudio(void) 61 { 62 // nothing to do here. 63 } 64 57 65 /** 58 66 \brief Return the Frame -
orxonox/branches/updater/src/gui/orxonox_gui_banner.cc
r3315 r3318 67 67 OrxonoxGuiBanner::~OrxonoxGuiBanner(void) 68 68 { 69 // nothing to do here 69 70 } 70 71 -
orxonox/branches/updater/src/gui/orxonox_gui_exec.cc
r3317 r3318 70 70 71 71 /** 72 \brief Destructs the Execution-stuff 73 */ 74 OrxonoxGuiExec::~OrxonoxGuiExec(void) 75 { 76 if(this->configFile) 77 delete []this->configFile; 78 } 79 80 /** 72 81 \brief Return the Frame 73 82 \return Returns the Exec-frame -
orxonox/branches/updater/src/gui/orxonox_gui_flags.cc
r3317 r3318 41 41 42 42 this->flagsFrame->fill(flagsBox); 43 } 44 45 /** 46 \brief Destructs the Flags-stuff 47 */ 48 OrxonoxGuiFlags::~OrxonoxGuiFlags(void) 49 { 50 // nothing to do here 43 51 } 44 52 -
orxonox/branches/updater/src/gui/orxonox_gui_keys.cc
r3315 r3318 41 41 42 42 this->keysFrame->fill(this->keysBox); 43 } 44 45 /** 46 \brief Destructs the Keys-stuff 47 */ 48 OrxonoxGuiKeys::~OrxonoxGuiKeys(void) 49 { 50 // nothing to do here. 43 51 } 44 52 -
orxonox/branches/updater/src/gui/orxonox_gui_update.cc
r3315 r3318 34 34 35 35 /** 36 \brief Creates an Audio-Frame36 \brief Creates an Update-Frame 37 37 */ 38 38 OrxonoxGuiUpdate::OrxonoxGuiUpdate(void) … … 62 62 #endif /* HAVE_CURL */ 63 63 this->updateFrame->fill(this->updateBox); 64 } 65 66 /** 67 \brief Destructs the Update-stuff 68 */ 69 OrxonoxGuiUpdate::~OrxonoxGuiUpdate(void) 70 { 71 if(this->tmpDir) 72 delete []this->tmpDir; 73 if(this->homeDir) 74 delete []homeDir; 75 if(this->installDataDir) 76 delete []this->installDataDir; 77 if(this->installSourceDir) 78 delete []this->installSourceDir; 79 if(this->userName) 80 delete []this->userName; 81 64 82 65 83 } -
orxonox/branches/updater/src/gui/orxonox_gui_video.cc
r3315 r3318 49 49 50 50 /** 51 \brief Destructs the Video-stuff 52 */ 53 OrxonoxGuiVideo::~OrxonoxGuiVideo(void) 54 { 55 // nothing to do here. 56 } 57 58 /** 51 59 \return Returns the Video-frame 52 60 */
Note: See TracChangeset
for help on using the changeset viewer.