So i have some variables:
QString result;
QDomElement element;

Element is parsed from an xml file and childnodes with attributes, some of them contain text.

So i know how to walk through the DOM tree and i want text from specific childnodes, but

result += element.text();

returns me the text ALL childnodes.. but i only want the text from the one element and not its childs...

How do i do that?

Thx in advance