2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

Replaced some qsl with u""_q literal.

This commit is contained in:
23rd
2022-11-30 00:46:36 +03:00
parent ad3f8e72a0
commit 4fabb3f2a2
109 changed files with 762 additions and 757 deletions

View File

@@ -300,18 +300,18 @@ bool DumpCallback(const google_breakpad::MinidumpDescriptor &md, void *context,
QString PlatformString() {
if (Platform::IsWindowsStoreBuild()) {
return Platform::IsWindows64Bit()
? qsl("WinStore64Bit")
: qsl("WinStore32Bit");
? u"WinStore64Bit"_q
: u"WinStore32Bit"_q;
} else if (Platform::IsWindows32Bit()) {
return qsl("Windows32Bit");
return u"Windows32Bit"_q;
} else if (Platform::IsWindows64Bit()) {
return qsl("Windows64Bit");
return u"Windows64Bit"_q;
} else if (Platform::IsMacStoreBuild()) {
return qsl("MacAppStore");
return u"MacAppStore"_q;
} else if (Platform::IsMac()) {
return qsl("MacOS");
return u"MacOS"_q;
} else if (Platform::IsLinux()) {
return qsl("Linux");
return u"Linux"_q;
}
Unexpected("Platform in CrashReports::PlatformString.");
}
@@ -320,12 +320,16 @@ void StartCatching(not_null<Core::Launcher*> launcher) {
#ifndef DESKTOP_APP_DISABLE_CRASH_REPORTS
ProcessAnnotations["Binary"] = cExeName().toUtf8().constData();
ProcessAnnotations["ApiId"] = QString::number(ApiId).toUtf8().constData();
ProcessAnnotations["Version"] = (cAlphaVersion() ? qsl("%1 alpha").arg(cAlphaVersion()) : (AppBetaVersion ? qsl("%1 beta") : qsl("%1")).arg(AppVersion)).toUtf8().constData();
ProcessAnnotations["Version"] = (cAlphaVersion()
? u"%1 alpha"_q.arg(cAlphaVersion())
: (AppBetaVersion
? u"%1 beta"_q
: u"%1"_q).arg(AppVersion)).toUtf8().constData();
ProcessAnnotations["Launched"] = QDateTime::currentDateTime().toString("dd.MM.yyyy hh:mm:ss").toUtf8().constData();
ProcessAnnotations["Platform"] = PlatformString().toUtf8().constData();
ProcessAnnotations["UserTag"] = QString::number(launcher->installationTag(), 16).toUtf8().constData();
QString dumpspath = cWorkingDir() + qsl("tdata/dumps");
QString dumpspath = cWorkingDir() + u"tdata/dumps"_q;
QDir().mkpath(dumpspath);
#ifdef Q_OS_WIN
@@ -356,7 +360,7 @@ void StartCatching(not_null<Core::Launcher*> launcher) {
SetSignalHandlers = false;
#else // MAC_USE_BREAKPAD
crashpad::CrashpadClient crashpad_client;
std::string handler = (cExeDir() + cExeName() + qsl("/Contents/Helpers/crashpad_handler")).toUtf8().constData();
std::string handler = (cExeDir() + cExeName() + u"/Contents/Helpers/crashpad_handler"_q).toUtf8().constData();
std::string database = QFile::encodeName(dumpspath).constData();
if (crashpad_client.StartHandler(
base::FilePath(handler),
@@ -394,7 +398,7 @@ void FinishCatching() {
StartResult Start() {
#ifndef DESKTOP_APP_DISABLE_CRASH_REPORTS
ReportPath = cWorkingDir() + qsl("tdata/working");
ReportPath = cWorkingDir() + u"tdata/working"_q;
#ifdef Q_OS_WIN
FILE *f = nullptr;