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

    r3287 r3288  
    708708}
    709709
     710/**
     711   \brief Sets the saveable-state of the option to true.
     712*/
     713void Option::saveability(void)
     714{
     715  this->saveable = true;
     716}
     717
     718/**
     719   \brief Sets the saveable-state of the option.
     720   \param isSaveable the saveable-state to set.
     721*/
     722void Option::saveability(bool isSaveable)
     723{
     724  this->saveable = isSaveable;
     725}
     726
     727/**
     728   \returns The saveable-state.
     729*/
     730bool Option::isSaveable(void)
     731{
     732  return this->saveable;
     733}
    710734
    711735/* BUTTON */
Note: See TracChangeset for help on using the changeset viewer.