logger.log(logger.LOW, "************************* ERROR READING BACKUP " +reader.errorString());
lastError = 16;
return;
}
if (reader.name().equalsIgnoreCase("nevernote-export") && reader.isStartElement()) {
QXmlStreamAttributes attributes = reader.attributes();
String version = attributes.value("version");
String type = attributes.value("exportType");
String application = attributes.value("application");
if (!version.equalsIgnoreCase("0.85") && !version.equalsIgnoreCase("0.86")
&& !version.equalsIgnoreCase("0.95")) {
lastError = 1;
errorMessage = "Unknown backup version = " +version;
return;