SetValue, etc -> SetTextValue

This commit is contained in:
Glenn Maynard
2007-02-11 06:26:06 +00:00
parent 549ad65b3c
commit fb8e73ac58
7 changed files with 28 additions and 28 deletions
+2 -2
View File
@@ -54,10 +54,10 @@ void ExportStrings::LuaInformation()
pNode->AppendAttr( "xsi:schemaLocation", "http://www.stepmania.com Lua.xsd" );
XNode *pVersionNode = pNode->AppendChild( "Version" );
pVersionNode->SetValue( PRODUCT_ID_VER );
pVersionNode->SetTextValue( PRODUCT_ID_VER );
XNode *pDateNode = pNode->AppendChild( "Date" );
pDateNode->SetValue( DateTime::GetNowDate().GetString() );
pDateNode->SetTextValue( DateTime::GetNowDate().GetString() );
XmlFileUtil::SaveToFile( pNode, "Lua.xml", "Lua.xsl" );