Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-05-26 21:13:51 +0300
committerKevin Ottens <kevin.ottens@nextcloud.com>2020-05-26 21:13:51 +0300
commitf5350db0785a586c0940c2a78decc1249487e810 (patch)
tree531aba15d55cc5554628104a8db986b55650318f /src/gui/wizard
parent4825c472f6f83d9886cc25b05f38639a2861dd66 (diff)
Use raw string literals when appropriate
This is especially nice for Windows paths. Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to 'src/gui/wizard')
-rw-r--r--src/gui/wizard/owncloudwizardcommon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/wizard/owncloudwizardcommon.cpp b/src/gui/wizard/owncloudwizardcommon.cpp
index cf27126dd..56768209b 100644
--- a/src/gui/wizard/owncloudwizardcommon.cpp
+++ b/src/gui/wizard/owncloudwizardcommon.cpp
@@ -47,7 +47,7 @@ namespace WizardCommon {
QString titleTemplate()
{
- return QString::fromLatin1("<font color=\"%1\" size=\"5\">").arg(Theme::instance()->wizardHeaderTitleColor().name()) + QString::fromLatin1("%1</font>");
+ return QString::fromLatin1(R"(<font color="%1" size="5">)").arg(Theme::instance()->wizardHeaderTitleColor().name()) + QString::fromLatin1("%1</font>");
}
QString subTitleTemplate()