I thought about

Qt Code:
  1. exiflist_params << fileName.toUtf8();
To copy to clipboard, switch view to plain text mode 

but this is wrong since fileName.toUtf8() gives QByteArray which will be used for creating QString (costructor QString::QString ( const QByteArray & ba )) which will be inserted into exiflist_params. This cunstructror constructs QString assuming that QByteArray contains ASCII encoded data. This I think just like

Qt Code:
  1. exiflist_params << QString::fromAscii(fileName.toUtf8());
To copy to clipboard, switch view to plain text mode 

It seems to be weird and does not work