Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
May 11, 2006, 5:54:36 PM (19 years ago)
Author:
bensch
Message:

save does not work yet

File:
1 edited

Legend:

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

    r7598 r7600  
    6666  {
    6767    Preferences::getInstance()->setMultiType(this->group->getName(), this->getName(), this->value());
     68    PRINTF(4)("Saved to '%s' of group '%s' value ", this->getName(), this->group->getName());
     69    this->value().debug();
    6870  }
    6971
     
    127129   */
    128130  void SaveableGroup::save()
    129   {}
     131  {
     132    std::vector<Saveable*>::iterator elem;
     133    for (elem = this->saveables.begin(); elem != this->saveables.end(); ++elem)
     134      (*elem)->save();
     135  }
    130136
    131137
Note: See TracChangeset for help on using the changeset viewer.