From: <ag...@us...> - 2011-11-25 20:38:44
|
Revision: 2620 http://zoolib.svn.sourceforge.net/zoolib/?rev=2620&view=rev Author: agreen Date: 2011-11-25 20:38:38 +0000 (Fri, 25 Nov 2011) Log Message: ----------- Using an empty tag makes for some messy indentation. Modified Paths: -------------- trunk/zoolib/source/cxx/zoolib/ZYad_XMLPList.cpp Modified: trunk/zoolib/source/cxx/zoolib/ZYad_XMLPList.cpp =================================================================== --- trunk/zoolib/source/cxx/zoolib/ZYad_XMLPList.cpp 2011-11-25 20:37:47 UTC (rev 2619) +++ trunk/zoolib/source/cxx/zoolib/ZYad_XMLPList.cpp 2011-11-25 20:38:38 UTC (rev 2620) @@ -403,9 +403,9 @@ } else { - s.Raw() << "<nil/> <!--!! Unhandled: */"; - s << iVal.Type().name(); - s.Raw() << " !!-->"; + s.Begin("nil"); + s.Raw() << "<!--!! Unhandled: */" << iVal.Type().name() << " !!-->"; + s.End("nil"); } } @@ -437,7 +437,9 @@ } else { - s.Raw() << "<nil/> <!--!! Unhandled Yad !!-->"; + s.Begin("nil"); + s.Raw() << "<!--!! Unhandled Yad !!-->"; + s.End("nil"); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |