Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 26, 2004, 3:22:05 AM (19 years ago)
Author:
bensch
Message:

orxonox/branches/updater: saveable flag is now protected

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/updater/src/gui/orxonox_gui_exec.cc

    r3260 r3288  
    4747  saveSettings = new CheckButton ("Save Settings");
    4848  saveSettings->value = 1;
    49   saveSettings->saveable = true;
     49  saveSettings->saveability();
    5050  execBox->fill (saveSettings);
    5151  verboseMode = new Menu ("verbose mode", "no output", "error", "warning", "info", "lastItem");
    5252  verboseMode->setFlagName ("verbose", "v", 0);
    53   verboseMode->saveable = true;
     53  verboseMode->saveability();
    5454  execBox->fill (verboseMode);
    5555  alwaysShow = new CheckButton ("Always Show this Menu");
    5656  alwaysShow->setFlagName ("gui", "g", 0);
    57   alwaysShow->saveable = true;
     57  alwaysShow->saveability();
    5858  execBox->fill (alwaysShow);
    5959  quit = new Button ("Quit");
     
    131131  int counter = 0;
    132132  while (counter < depth && ((widget->isOption>0
    133                               && (static_cast<Option*>(widget)->saveable) )
     133                              && (static_cast<Option*>(widget)->isSaveable()) )
    134134                             || (widget->isOption<0
    135135                                 && static_cast<Packer*>(widget)->getGroupName())))
     
    156156  //    printf ("%s\n",widget->label);
    157157  if (widget->isOption >= 1)
    158     if  (static_cast<Option*>(widget)->saveable)
     158    if  (static_cast<Option*>(widget)->isSaveable())
    159159      {
    160160        char Buffer[256];
Note: See TracChangeset for help on using the changeset viewer.