Hello,
my problem is as simple as 123: I want to display french text, ie containing accents. I have tried almost all combinations with QString::from and QString::to without any success. For instance what is wrong here?
printf("%s\n", title.toLocal8Bit().data());
QString title=QString::fromLocal8Bit("Coordonnées parallèles");
printf("%s\n", title.toLocal8Bit().data());
To copy to clipboard, switch view to plain text mode
Output:
Coordonnes Parallles
Coordonnes Parallles
To copy to clipboard, switch view to plain text mode
Bookmarks