- Timestamp:
- Aug 27, 2010, 2:41:03 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/consolecommands3/src/libraries/core/XMLPort.h
r7212 r7228 394 394 { 395 395 COUT(5) << this->owner_->getLoaderIndentation() << "Loading parameter " << this->paramname_ << " in " << this->identifier_->getName() << " (objectname " << this->owner_->getName() << ")." << std::endl << this->owner_->getLoaderIndentation(); 396 bool success;397 this->loadexecutor_->parse(object, attributeValue, & success, ",");398 if ( success|| (mode == XMLPort::ExpandObject))396 int error; 397 this->loadexecutor_->parse(object, attributeValue, &error, ","); 398 if (!error || (mode == XMLPort::ExpandObject)) 399 399 this->parseResult_ = PR_finished; 400 400 else
Note: See TracChangeset
for help on using the changeset viewer.