(file) Return to XmlGenerator.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/XmlGenerator.cpp between version 1.2 and 1.2.2.1

version 1.2, 2008/03/07 18:09:48 version 1.2.2.1, 2008/03/26 23:11:51
Line 758 
Line 758 
  
                 os << "<?" << entry.text << " ";                 os << "<?" << entry.text << " ";
                 _printAttributes(                 _printAttributes(
                     os, entry.attributes, entry.attributeCount);                      os, entry.attributes.getData(), entry.attributes.size());
                 os << "?>";                 os << "?>";
                 break;                 break;
             }             }
Line 769 
Line 769 
  
                 os << "<" << entry.text;                 os << "<" << entry.text;
  
                 if (entry.attributeCount)                  if (entry.attributes.size())
                     os << ' ';                     os << ' ';
  
                 _printAttributes(                 _printAttributes(
                     os, entry.attributes, entry.attributeCount);                      os, entry.attributes.getData(), entry.attributes.size());
                 os << ">";                 os << ">";
                 stack.push(entry.text);                 stack.push(entry.text);
                 break;                 break;
Line 785 
Line 785 
  
                 os << "<" << entry.text << " ";                 os << "<" << entry.text << " ";
                 _printAttributes(                 _printAttributes(
                     os, entry.attributes, entry.attributeCount);                      os, entry.attributes.getData(), entry.attributes.size());
                 os << "/>";                 os << "/>";
                 break;                 break;
             }             }


Legend:
Removed from v.1.2  
changed lines
  Added in v.1.2.2.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2