Changeset 3288 in orxonox.OLD for orxonox/branches/updater/src/gui/orxonox_gui_exec.cc
- Timestamp:
- Dec 26, 2004, 3:22:05 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/updater/src/gui/orxonox_gui_exec.cc
r3260 r3288 47 47 saveSettings = new CheckButton ("Save Settings"); 48 48 saveSettings->value = 1; 49 saveSettings->saveab le = true;49 saveSettings->saveability(); 50 50 execBox->fill (saveSettings); 51 51 verboseMode = new Menu ("verbose mode", "no output", "error", "warning", "info", "lastItem"); 52 52 verboseMode->setFlagName ("verbose", "v", 0); 53 verboseMode->saveab le = true;53 verboseMode->saveability(); 54 54 execBox->fill (verboseMode); 55 55 alwaysShow = new CheckButton ("Always Show this Menu"); 56 56 alwaysShow->setFlagName ("gui", "g", 0); 57 alwaysShow->saveab le = true;57 alwaysShow->saveability(); 58 58 execBox->fill (alwaysShow); 59 59 quit = new Button ("Quit"); … … 131 131 int counter = 0; 132 132 while (counter < depth && ((widget->isOption>0 133 && (static_cast<Option*>(widget)-> saveable) )133 && (static_cast<Option*>(widget)->isSaveable()) ) 134 134 || (widget->isOption<0 135 135 && static_cast<Packer*>(widget)->getGroupName()))) … … 156 156 // printf ("%s\n",widget->label); 157 157 if (widget->isOption >= 1) 158 if (static_cast<Option*>(widget)-> saveable)158 if (static_cast<Option*>(widget)->isSaveable()) 159 159 { 160 160 char Buffer[256];
Note: See TracChangeset
for help on using the changeset viewer.