Changeset 5929 for code/trunk/src/libraries/core/XMLPort.h
- Timestamp:
- Oct 12, 2009, 8:20:07 PM (16 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/core5 (added) merged: 5768-5769,5772,5775-5780,5783-5785,5791-5792,5795-5807,5809-5814,5816-5832,5836-5839,5842-5853,5855-5899,5904-5922,5924-5928
- Property svn:mergeinfo changed
-
code/trunk/src/libraries/core/XMLPort.h
r5781 r5929 51 51 #include "util/MultiType.h" 52 52 #include "util/OrxAssert.h" 53 #include "Factory.h"54 53 #include "Identifier.h" 55 54 #include "Executor.h" … … 377 376 this->owner_->xmlAttributes_.clear(); 378 377 // Iterate through the attributes manually in order to make them case insensitive 379 Attribute* attribute = xmlelement.FirstAttribute(false);378 ticpp::Attribute* attribute = xmlelement.FirstAttribute(false); 380 379 while (attribute != 0) 381 380 { … … 412 411 } 413 412 } 414 else 413 else if (mode == XMLPort::SaveObject) 415 414 { 416 415 if (this->saveexecutor_) … … 548 547 for (ticpp::Iterator<ticpp::Element> child = xmlsubelement->FirstChildElement(false); child != child.end(); child++) 549 548 { 550 Identifier* identifier = Factory::getIdentifier(child->Value());549 Identifier* identifier = Identifier::getIdentifierByString(child->Value()); 551 550 if (identifier) 552 551 { … … 629 628 } 630 629 } 631 else 630 else if (mode == XMLPort::SaveObject) 632 631 { 633 632 }
Note: See TracChangeset
for help on using the changeset viewer.