mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
Use QString literals
This patch covers src/gui and some leftovers from previous commit.
This commit is contained in:
parent
5341478036
commit
802ec5a14e
59 changed files with 912 additions and 902 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue