Changeset 1787 for code/trunk/src/core/XMLPort.h
- Timestamp:
- Sep 15, 2008, 11:19:54 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/XMLPort.h
r1755 r1787 301 301 if (identifier) 302 302 { 303 if (identifier->isA( Class(O)))303 if (identifier->isA(GetClassIdentifier(O))) 304 304 { 305 305 if (this->identifierIsIncludedInLoaderMask(identifier)) … … 333 333 else 334 334 { 335 COUT(2) << ((BaseObject*)object)->getLoaderIndentation() << "Warning: '" << child->Value() << "' is not a '" << Class(O)->getName() << "'." << std::endl;335 COUT(2) << ((BaseObject*)object)->getLoaderIndentation() << "Warning: '" << child->Value() << "' is not a '" << GetClassIdentifier(O)->getName() << "'." << std::endl; 336 336 } 337 337 } … … 346 346 { 347 347 COUT(1) << std::endl; 348 COUT(1) << "An error occurred in XMLPort.h while loading a '" << Class(O)->getName() << "' in '" << this->sectionname_ << "' of '" << this->identifier_->getName() << "' (objectname: " << ((BaseObject*)object)->getName() << ") in " << object->getLevelfile() << ":" << std::endl;348 COUT(1) << "An error occurred in XMLPort.h while loading a '" << GetClassIdentifier(O)->getName() << "' in '" << this->sectionname_ << "' of '" << this->identifier_->getName() << "' (objectname: " << ((BaseObject*)object)->getName() << ") in " << object->getLevelfile() << ":" << std::endl; 349 349 COUT(1) << ex.what() << std::endl; 350 350 }
Note: See TracChangeset
for help on using the changeset viewer.