Hii Forum,

I have a problem with the output of QProcess

Qt Code:
  1. m_process.start("ipconfig /all");
  2. if (!m_process.waitForStarted()) {
  3. qDebug() << "Error : " << m_process.errorString();
  4. }
  5. m_process.waitForFinished(-1); // will wait forever until finished
  6. output = m_process.readAllStandardOutput();
  7. ui->plainTextEdit_InfosConfig->setPlainText(output.toLatin1());
To copy to clipboard, switch view to plain text mode 

I want to display the right symbol ( é not ?)
See Scrennshot : accents.png

Regards,