Hi i got a little problem with the TagLib library. Now i use to translate strings between QString and TagLib::String this:
Qt Code:
  1. #define TStringToQString(s) QString::fromUtf8(s.toCString(true))
  2. #define Qt4QStringToTString(s) TagLib::String(s.toUtf8().data(), TagLib::String::UTF8)
To copy to clipboard, switch view to plain text mode 
but when i try read file with polish alphabetic character in the name i got this:
QString(correctly) :
D:\ThisIsThePlaceŁŚÓ.mp3
after translate to TagLib::String
TagLib: Could not open file D:\ThisIsThePlaceAZÓ.mp3
Maybe someone have idea how to fix this?