mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 15:07:22 -06:00
Use QString literals
This patch covers src/gui and some leftovers from previous commit.
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user