aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Faure <faure@kde.org>2014-03-01 11:26:15 +0100
committerDavid Faure <faure@kde.org>2014-03-01 11:26:34 +0100
commitf2a99be361a5e16fd5058d725db21374192bbfa8 (patch)
tree07f55b0f628c81308695dc0aefa5ed13450c0c1d
parent6437231041d3dac38bc60e36b1196acf46f8f35c (diff)
downloadkconfig-f2a99be361a5e16fd5058d725db21374192bbfa8.tar.gz
kconfig-f2a99be361a5e16fd5058d725db21374192bbfa8.tar.bz2
make comment less confusing
-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 fa2075c4..5b51cce8 100644
--- a/src/core/kconfig.cpp
+++ b/src/core/kconfig.cpp
@@ -570,7 +570,7 @@ void KConfigPrivate::changeFileName(const QString &name)
if (wantDefaults()) { // accessing default app-specific config "appnamerc"
fileName = KConfig::mainConfigName();
file = QStandardPaths::writableLocation(resourceType) + QLatin1Char('/') + fileName;
- } else if (wantGlobals()) { // accessing "kdeglobals" - XXX used anywhere?
+ } else if (wantGlobals()) { // accessing "kdeglobals" by specifying no filename and NoCascade - XXX used anywhere?
resourceType = QStandardPaths::GenericConfigLocation;
fileName = QLatin1String("kdeglobals");
file = sGlobalFileName;