Use QString literals

This patch covers src/gui and some leftovers from previous commit.
This commit is contained in:
Chocobo1 2022-03-12 22:00:58 +08:00
parent 5341478036
commit 802ec5a14e
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
59 changed files with 912 additions and 902 deletions

View file

@ -215,7 +215,7 @@ void Smtp::readyRead()
case EhloSent:
case HeloSent:
case EhloGreetReceived:
parseEhloResponse(code, (line[3] != ' '), line.mid(4));
parseEhloResponse(code, (line[3] != ' '), QString::fromUtf8(line.mid(4)));
break;
#ifndef QT_NO_OPENSSL
case StartTLSSent: