Fix issues with badly encoded escape sequences in config files.

This commit is contained in:
Petr Mrázek
2014-03-29 21:16:54 +01:00
parent 902dc50c87
commit 5f7a48a35e
5 changed files with 88 additions and 11 deletions

View File

@ -38,5 +38,6 @@ EditNotesDialog::~EditNotesDialog()
QString EditNotesDialog::getText()
{
return ui->noteEditor->toPlainText();
QString test = ui->noteEditor->toPlainText();
return test;
}