Hello, i'd like to convert a QString with iso 8859-1 conversion, cos when i send it through a tcp connection i can't receive it formatted as i want but it is composed by strange character.
I tried with this code, but it does not work.
Qt Code:
  1. QString stream = "èèèèèèèèèèèèè";
  2. QString latinStream;
  3. for ( int i = 0; i < stream.size(); i++ )
  4. {
  5. latinStream.append( stream.at(i).toLatin1() );
  6. }
To copy to clipboard, switch view to plain text mode 
any hint?
thx