diff options
author | Volker Krause <vkrause@kde.org> | 2018-10-10 18:26:49 +0200 |
---|---|---|
committer | Volker Krause <vkrause@kde.org> | 2018-10-10 18:26:49 +0200 |
commit | 7d022cdc37b5cce54d762c45c159d13aff1f97c4 (patch) | |
tree | 22501797e78efbd5e25a446027dce5e0ab8ddd35 | |
parent | 8579ec54838b7188ed016f7adb4a69bbf2e39712 (diff) | |
download | kconfig-7d022cdc37b5cce54d762c45c159d13aff1f97c4.tar.gz kconfig-7d022cdc37b5cce54d762c45c159d13aff1f97c4.tar.bz2 |
Fix compilation without D-Bus
Relevant on Android.
-rw-r--r-- | src/core/kconfigwatcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/kconfigwatcher.cpp b/src/core/kconfigwatcher.cpp index 96120c6a..6c1373e1 100644 --- a/src/core/kconfigwatcher.cpp +++ b/src/core/kconfigwatcher.cpp @@ -85,7 +85,7 @@ KConfigWatcher::KConfigWatcher(const KSharedConfig::Ptr &config): SLOT(onConfigChangeNotification(QHash<QString, QByteArrayList>))); } #else - qWarning() << "Use of KConfigWatcher without DBus support. You will not receive updates" + qWarning() << "Use of KConfigWatcher without DBus support. You will not receive updates"; #endif } |