Hi all,
I want to parse a xml response while parsing it shows following error whether any problem with my code. Please help me.
bool ok = reader->parse(xmlSrc);
if(ok){
}else{
}
QXmlInputSource *xmlSrc=new QXmlInputSource(reply);
QXmlReader *reader;
bool ok = reader->parse(xmlSrc);
if(ok){
QMessageBox::about(this,"Xml","Xml is parsed");
}else{
QMessageBox::about(this,"Error","Unable to parse");
}
To copy to clipboard, switch view to plain text mode
It shows following error while it is running
QWaitCondition: Destroyed while threads are still waiting
To copy to clipboard, switch view to plain text mode
If anyone knows please help me...
Bookmarks