Code: Select all
raiseError(QString(_("Not an XBEL version 1.0 file.")));
The underscore "_" makes the compiler complain about an unknown identifier and abort building.
Changing the line to:
Code: Select all
raiseError(QString("Not an XBEL version 1.0 file."));
seems to fix it.