Read the raw value of a QDomElement

296 Views Asked by At

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 &quot;save&quot; to validate</source>
        <translation>Appuyez sur &lt;b&gt;enregistrer&lt;/b&gt;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 &quot;save&quot; 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 ?

0

There are 0 best solutions below