Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4091 in orxonox.OLD for orxonox/trunk/src/lib/gui/gui/gui_update.cc


Ignore:
Timestamp:
May 6, 2005, 8:02:26 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: now All options get loaded in new style (be aware, quiting only works with ESCAPE, not q, but of corse you can change this now in the GUI

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/gui/gui/gui_update.cc

    r4083 r4091  
    5050
    5151  this->updateFrame = new Frame("Update-Options:");
    52   this->updateFrame->setGroupName("update");
     52  this->updateFrame->setGroupName(CONFIG_SECTION_DATA);
    5353  this->updateBox = new Box('v');
    5454
    55   dataDirButton = new Button("Data Directory");
    56   dataDirLabel = new OptionLabel("DataDir", "unknown");
     55  dataDirButton = new Button(CONFIG_NAME_DATADIR);
     56  dataDirLabel = new OptionLabel(CONFIG_NAME_DATADIR, "unknown");
    5757  dataDirLabel->saveability();
    5858  dataDirDialog = new FileDialog("data-Repos-location");
     
    7070
    7171  // the Button for autoUpdating
    72   this->autoUpdate = new CheckButton("auto update");
     72  this->autoUpdate = new CheckButton(CONFIG_NAME_AUTO_UPDATE);
    7373  this->updateBox->fill(this->autoUpdate);
    7474  this->autoUpdate->setFlagName("update", "u", 0);
Note: See TracChangeset for help on using the changeset viewer.