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_audio.cc

    r2739 r3288  
    3737  enableSound = new CheckButton ("Disable Sound");
    3838  enableSound->setFlagName ("no-sound", 0);
    39   enableSound->saveable = true;
     39  enableSound->saveability();
    4040  audioBox->fill (enableSound);
    4141  Label* musicVolumeLabel = new Label ("Music Volume");
     
    4343  musicVolume = new Slider ("Music Volume", 0, 100);
    4444  musicVolume->setFlagName ("music-volume", "m", 80);
    45   musicVolume->saveable = true;
     45  musicVolume->saveability();
    4646  audioBox->fill (musicVolume);
    4747  Label* effectsVolumeLabel = new Label ("Effects Volume");
     
    4949  effectsVolume = new Slider ("Effects Volume", 0, 100);
    5050  effectsVolume->setFlagName ("effects-volume", "e", 80);
    51   effectsVolume->saveable = true;
     51  effectsVolume->saveability();
    5252  audioBox->fill (effectsVolume);
    5353
Note: See TracChangeset for help on using the changeset viewer.