Use QString literals

This patch covers src/app and src/base folders.
Follow up of ab64ee872b.
This commit is contained in:
Chocobo1
2022-03-04 14:24:14 +08:00
parent ab64ee872b
commit f0dd7b7dae
38 changed files with 771 additions and 764 deletions

View File

@@ -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;