Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
May 12, 2006, 10:30:49 AM (18 years ago)
Author:
bensch
Message:

better saveability

File:
1 edited

Legend:

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

    r7604 r7605  
    5858  {
    5959    this->value() = Preferences::getInstance()->getMultiType(this->group->getName(), this->getName(), this->_value);
    60     PRINTF(4)("Loaded to '%s' of group '%s' value ", this->getName(), this->group->getName());
    61     this->value().debug();
    62 
     60    PRINTF(4)("Loaded to '%s' of group '%s' value '%s'\n", this->getName(), this->group->getName(), this->value().getCString());
    6361  }
    6462
     
    6664  {
    6765    Preferences::getInstance()->setMultiType(this->group->getName(), this->getName(), this->value(), true);
    68     PRINTF(4)("Saved to '%s' of group '%s' value ", this->getName(), this->group->getName());
    69     this->value().debug();
     66    PRINTF(4)("Saved to '%s' of group '%s' value '%s'\n", this->getName(), this->group->getName(), this->value().getCString());
    7067  }
    7168
Note: See TracChangeset for help on using the changeset viewer.