Thanks a lot Julien for help ,
I have developed an application that extract links from a javascript file
with the manipulation of the dom tree, QDocument and Qwebkit .
There is a portion of my code where i have the falawing error:
QDomNode n = docElem.firstChild();
while(!n.isNull()) {
QDomElement e = n.toElement(); // try to convert the
node to an element.
if(!e.isNull()) {
cout << e.tagName() << endl; //
the node really is an element.
}
n = n.nextSibling();
}
Can any one help me.
Thank's.
_______________________________________________
webkit-dev mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-dev