[code] void main() { TiXmlDocument doc; doc.SetTabSize( 8 ); doc.Load( "demotest.xml" ); doc.SaveFile(); } [/code]
File does not changed.
Interesting mis-interpretation. I updated the documentation for SetTabSize().
The function doesn't change the tab size - it enables ErrorRow() and ErrorCol() to return correct values.
lee
Ok, got it.
Log in to post a comment.
[code]
void main()
{
TiXmlDocument doc;
doc.SetTabSize( 8 );
doc.Load( "demotest.xml" );
doc.SaveFile();
}
[/code]
File does not changed.
Interesting mis-interpretation. I updated the documentation for SetTabSize().
The function doesn't change the tab size - it enables ErrorRow() and ErrorCol() to return correct values.
lee
Ok, got it.