2021-02-05 Fred Gleason <fredg@paravelsystems.com>

* Removed 'Q3TextStream' dependencies from rmlsend(1).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-02-06 09:35:40 -05:00
parent e4d26cfca2
commit 6a9fdb1b59
3 changed files with 6 additions and 5 deletions

View File

@@ -356,8 +356,8 @@ void MainObject::InitStream()
exit(1);
}
}
input_stream=new Q3TextStream(f,QIODevice::ReadOnly);
input_stream->setEncoding(Q3TextStream::UnicodeUTF8);
input_stream=new QTextStream(f,QIODevice::ReadOnly);
input_stream->setEncoding(QTextStream::UnicodeUTF8);
}