Use Qt::Literals::StringLiterals

This commit is contained in:
Jonas Kvinge
2024-10-18 20:17:23 +02:00
parent 6931538ebf
commit 0e330b81db
156 changed files with 160 additions and 172 deletions

View File

@@ -45,7 +45,7 @@
#include "settings/subsonicsettingspage.h"
using namespace Qt::StringLiterals;
using namespace Qt::Literals::StringLiterals;
SubsonicBaseRequest::SubsonicBaseRequest(SubsonicService *service, QObject *parent)
: QObject(parent),

View File

@@ -50,7 +50,7 @@
#include "subsonicbaserequest.h"
#include "subsonicrequest.h"
using namespace Qt::StringLiterals;
using namespace Qt::Literals::StringLiterals;
namespace {
constexpr int kMaxConcurrentAlbumsRequests = 3;

View File

@@ -35,7 +35,7 @@
#include "subsonicbaserequest.h"
#include "subsonicscrobblerequest.h"
using namespace Qt::StringLiterals;
using namespace Qt::Literals::StringLiterals;
namespace {
constexpr int kMaxConcurrentScrobbleRequests = 3;

View File

@@ -60,7 +60,7 @@
#include "settings/settingsdialog.h"
#include "settings/subsonicsettingspage.h"
using namespace Qt::StringLiterals;
using namespace Qt::Literals::StringLiterals;
using std::make_unique;
using std::make_shared;