That's because Windows and Linux use different "local8Bit" encodings. For Windows this is probably utf-8 while for your Linux it is presumably latin1. Use QString::fromUtf8() to explicitly convert a utf-8 string to Unicode.
That's because Windows and Linux use different "local8Bit" encodings. For Windows this is probably utf-8 while for your Linux it is presumably latin1. Use QString::fromUtf8() to explicitly convert a utf-8 string to Unicode.
schnitzel (21st February 2011)
Bookmarks