I've an XML file from which i want to read the raw value. But Qt converts the value contents to a readable text...
<?xml version="1.0" encoding="utf-8"?>
<defaultcodec>UTF-8</defaultcodec>
<context>
<name>AbstractAdjustageCommand</name>
<message>
<source>Press "save" to validate</source>
<translation>Appuyez sur <b>enregistrer</b>pour valider</translation>
</message>
</context>
When i read the value with the following code :
msgNode.firstChildElement("source").text();
Then i've got the following result :
Press "acquisition" to validate the measurement
But, i really want to read the raw value and read the Press "save" to validate
instead.
Is there a way to read the raw value of the QDomElement, or do I have to use another class in order to do that ?