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?
Qt Code:
  1. QString title=QString::fromLocal8Bit("Coordonnées parallèles");
  2. printf("%s\n", title.toLocal8Bit().data());
To copy to clipboard, switch view to plain text mode 
Output:
Qt Code:
  1. Coordonnes Parallles
To copy to clipboard, switch view to plain text mode