aboutsummaryrefslogtreecommitdiff
path: root/src/core/kconfig.cpp
diff options
context:
space:
mode:
authorFriedrich W. H. Kossebau <kossebau@kde.org>2019-08-24 09:07:32 +0200
committerFriedrich W. H. Kossebau <kossebau@kde.org>2019-08-24 09:07:32 +0200
commita79ddf8dd380d115450c0d2f8a972920682eeb0c (patch)
tree191cc1b7567ebe722f20e9f2ab51b833470f4686 /src/core/kconfig.cpp
parentdd13427a7166621f9ce4d11867d3e7e5ecffaccb (diff)
downloadkconfig-a79ddf8dd380d115450c0d2f8a972920682eeb0c.tar.gz
kconfig-a79ddf8dd380d115450c0d2f8a972920682eeb0c.tar.bz2
String code optimization: use QLatin1String/QChar overload for string concat
GIT_SILENT
Diffstat (limited to 'src/core/kconfig.cpp')
-rw-r--r--src/core/kconfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/kconfig.cpp b/src/core/kconfig.cpp
index c45643d2..67c0b469 100644
--- a/src/core/kconfig.cpp
+++ b/src/core/kconfig.cpp
@@ -468,7 +468,7 @@ bool KConfig::sync()
}
if (!notifyGroupsLocal.isEmpty()) {
- d->notifyClients(notifyGroupsLocal, QStringLiteral("/") + name());
+ d->notifyClients(notifyGroupsLocal, QLatin1Char('/') + name());
}
if (!notifyGroupsGlobal.isEmpty()) {
d->notifyClients(notifyGroupsGlobal, QStringLiteral("/kdeglobals"));