Fixed determining of supported file formats for CFF.

preferencesAboutTextFull
Aleksei Kanash 12 years ago
parent a41462f347
commit 3a2967924b
  1. 2
      plugins/cffadaptor/src/UBCFFAdaptor.cpp

@ -858,7 +858,7 @@ bool UBCFFAdaptor::UBToCFFConverter::itIsSupportedFormat(const QString &format)
QStringList tsl = format.split(".", QString::SkipEmptyParts); QStringList tsl = format.split(".", QString::SkipEmptyParts);
if (0 < tsl.count()) if (0 < tsl.count())
bRet = cffSupportedFileFormats.contains(tsl.at(tsl.count()-1)); bRet = cffSupportedFileFormats.contains(tsl.at(tsl.count()-1).toLower());
else else
bRet = false; bRet = false;

Loading…
Cancel
Save