Changeset 7605 in orxonox.OLD for branches/qt_gui/src/lib
- Timestamp:
- May 12, 2006, 10:30:49 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/qt_gui/src/lib/gui/gui_saveable.cc
r7604 r7605 58 58 { 59 59 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()); 63 61 } 64 62 … … 66 64 { 67 65 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()); 70 67 } 71 68
Note: See TracChangeset
for help on using the changeset viewer.