I navigate trough the xml and i get to the element that i want something like
<demoVersion>false</demoVersion>
i want to change the text name from false to true, but the only method i founded on TiXmlNode was getText. i cant found a seter, the only seters i founded was SetValue and SetName but its not what i want. If anyone can help me i would be graithfull.
sorry for the bad english :-)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The child node of the "demoVersion" TiXmlElement will be a TiXmlText object. You can then change the Value() of the text node, which is currently "false".
lee
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I navigate trough the xml and i get to the element that i want something like
<demoVersion>false</demoVersion>
i want to change the text name from false to true, but the only method i founded on TiXmlNode was getText. i cant found a seter, the only seters i founded was SetValue and SetName but its not what i want. If anyone can help me i would be graithfull.
sorry for the bad english :-)
The child node of the "demoVersion" TiXmlElement will be a TiXmlText object. You can then change the Value() of the text node, which is currently "false".
lee