mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-02 13:48:05 -06:00
Use QString literals
This patch covers src/app and src/base folders.
Follow up of ab64ee872b.
This commit is contained in:
@@ -30,6 +30,7 @@
|
||||
|
||||
#include <QObject>
|
||||
|
||||
#include "base/global.h"
|
||||
#include "base/settingvalue.h"
|
||||
|
||||
namespace Net
|
||||
@@ -50,7 +51,7 @@ namespace Net
|
||||
struct ProxyConfiguration
|
||||
{
|
||||
ProxyType type = ProxyType::None;
|
||||
QString ip = "0.0.0.0";
|
||||
QString ip = u"0.0.0.0"_qs;
|
||||
ushort port = 8080;
|
||||
QString username;
|
||||
QString password;
|
||||
|
||||
Reference in New Issue
Block a user