Changeset 4746 in orxonox.OLD for orxonox/trunk/src/lib/gui/gui_update.cc
- Timestamp:
- Jul 1, 2005, 12:48:48 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/gui/gui_update.cc
r4427 r4746 35 35 \brief Creates an Update-Frame 36 36 */ 37 GuiUpdate::GuiUpdate( void)37 GuiUpdate::GuiUpdate() 38 38 { 39 39 FileDialog* dataDirDialog; //!< A FileDialog for the selection of the DataRepos … … 100 100 \brief Destructs the Update-stuff 101 101 */ 102 GuiUpdate::~GuiUpdate( void)102 GuiUpdate::~GuiUpdate() 103 103 { 104 104 … … 128 128 \brief Look what info we can get from this system 129 129 */ 130 bool GuiUpdate::getSystemInfo( void)130 bool GuiUpdate::getSystemInfo() 131 131 { 132 132 PRINTF(5)("Grabbing system information\n"); … … 155 155 156 156 #ifdef HAVE_CURL 157 bool* GuiUpdate::checkForUpdates( void)157 bool* GuiUpdate::checkForUpdates() 158 158 { 159 159 PRINTF(4)("checking for new version of orxonox\n"); … … 169 169 \brief Creates a window, and all it contains for the Data-update. 170 170 */ 171 void GuiUpdate::updateDataWindowCreate( void)171 void GuiUpdate::updateDataWindowCreate() 172 172 { 173 173 this->updateDataWindow = new Window("update orxonox::Data"); … … 208 208 \returns A Pointer to the Button of the UpdaterDataWindow 209 209 */ 210 Button* GuiUpdate::updateDataWindowGetButton( void)210 Button* GuiUpdate::updateDataWindowGetButton() 211 211 { 212 212 return this->updateDataWindowButton; … … 216 216 \brief Creates a window, and all it contains for the Source-update. 217 217 */ 218 void GuiUpdate::updateSourceWindowCreate( void)218 void GuiUpdate::updateSourceWindowCreate() 219 219 { 220 220 // the button, that opens this Window. … … 247 247 \returns A Pointer to the Button of the UpdaterSourceWindow 248 248 */ 249 Button* GuiUpdate::updateSourceWindowGetButton( void)249 Button* GuiUpdate::updateSourceWindowGetButton() 250 250 { 251 251 return this->updateSourceWindowButton;
Note: See TracChangeset
for help on using the changeset viewer.