Open erfanhuda opened 1 year ago
No viable conversion from returned value of type 'int' to function return type (vectors) on lrxmlwriter.cpp line 83.
Updating the following code
bool XMLWriter::setContent(QString fileName) { QFile xmlFile(fileName); if (xmlFile.open(QFile::ReadOnly)){ return m_doc->setContent(&xmlFile); } return false; }
to
bool XMLWriter::setContent(QString fileName) { QFile xmlFile(fileName); if (xmlFile.open(QFile::ReadOnly)){ m_doc->setContent(&xmlFile); return true; } return false; }
No viable conversion from returned value of type 'int' to function return type (vectors) on lrxmlwriter.cpp line 83.
Updating the following code
to