- Timestamp:
- Aug 19, 2010, 4:57:06 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/consolecommands3/src/libraries/core/XMLPort.h
r7186 r7189 398 398 { 399 399 COUT(5) << this->owner_->getLoaderIndentation() << "Loading parameter " << this->paramname_ << " in " << this->identifier_->getName() << " (objectname " << this->owner_->getName() << ")." << std::endl << this->owner_->getLoaderIndentation(); 400 if (this->loadexecutor_->parse(object, attributeValue, ",") || (mode == XMLPort::ExpandObject)) 400 bool success; 401 this->loadexecutor_->parse(object, attributeValue, &success, ","); 402 if (success || (mode == XMLPort::ExpandObject)) 401 403 this->parseResult_ = PR_finished; 402 404 else
Note: See TracChangeset
for help on using the changeset viewer.