for (size_t i = 0; i < SUPPORTED_FORMATS.size(); i++) {
const OutputFormat& of = SUPPORTED_FORMATS.at(i);
if (suffix.compare(of.second) == 0) {
- qDebug() << "Changing format to idx" << i;
emit formatChanged(i);
return;
}
}
-
- qDebug() << "Cannot guess type from suffix";
}
const int GlobalInfo::APP_VERSION_MAJ(0);
const int GlobalInfo::APP_VERSION_MIN(2);
-const QString GlobalInfo::APP_VERSION_REV("d");
+const QString GlobalInfo::APP_VERSION_REV("e");
for (int i = 0; i < formats.size(); i++) {
const QString f = QString(formats.at(i));
- if (suffix.compare(f) == 0) {
- qDebug() << "Changing format to idx" << i << ", type" << f;
+ if (suffix.compare(f) == 0)
return i;
- }
}
- qDebug() << "Cannot guess type from suffix";
return -1;
}