Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7480 in orxonox.OLD for branches/qt_gui/src/lib/gui/gui_saveable.cc


Ignore:
Timestamp:
May 2, 2006, 10:23:52 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: renaming

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/qt_gui/src/lib/gui/gui_saveable.cc

    r7479 r7480  
    2424   * standard constructor
    2525  */
    26   GuiSaveable::GuiSaveable (const std::string& optionName)
     26  Saveable::Saveable (const std::string& optionName)
    2727  : BaseObject(optionName)
    2828  {
     
    3535   * standard deconstructor
    3636  */
    37   GuiSaveable::~GuiSaveable ()
     37  Saveable::~Saveable ()
    3838  {
    3939    // delete what has to be deleted here
     
    4141
    4242
    43   void GuiSaveable::makeSaveable()
     43  void Saveable::makeSaveable()
    4444  {
    4545    this->bSaveable = true;
     
    4848
    4949
    50   GuiSaveableGroup::GuiSaveableGroup(const std::string& groupName)
    51       : GuiSaveable(groupName)
     50  SaveableGroup::SaveableGroup(const std::string& groupName)
     51      : Saveable(groupName)
    5252  {
    5353  }
     
    5656
    5757
    58   GuiSaveableGroup::~GuiSaveableGroup()
     58  SaveableGroup::~SaveableGroup()
    5959  {
    60     std::vector<GuiSaveableGroup*>::iterator delGroup = std::find(saveableGroups.begin(), saveableGroups.end(), this);
     60    std::vector<SaveableGroup*>::iterator delGroup = std::find(saveableGroups.begin(), saveableGroups.end(), this);
    6161
    6262    if (delGroup != saveableGroups.end() )
     
    6464  }
    6565
    66   std::vector<GuiSaveableGroup*>  GuiSaveableGroup::saveableGroups;
     66  std::vector<SaveableGroup*>  SaveableGroup::saveableGroups;
    6767
    68   void GuiSaveableGroup::makingElementSaveable()
     68  void SaveableGroup::makingElementSaveable()
    6969  {
    70     GuiSaveableGroup::saveableGroups.push_back(this);
     70    SaveableGroup::saveableGroups.push_back(this);
    7171  }
    7272
Note: See TracChangeset for help on using the changeset viewer.