Commit 3a296792 authored by Aleksei Kanash's avatar Aleksei Kanash

Fixed determining of supported file formats for CFF.

parent a41462f3
...@@ -858,7 +858,7 @@ bool UBCFFAdaptor::UBToCFFConverter::itIsSupportedFormat(const QString &format) ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment