diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/kconfigwatcher.cpp | 2 | ||||
| -rw-r--r-- | src/core/kcoreconfigskeleton.cpp | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/src/core/kconfigwatcher.cpp b/src/core/kconfigwatcher.cpp index 495195c0..f63c39c1 100644 --- a/src/core/kconfigwatcher.cpp +++ b/src/core/kconfigwatcher.cpp @@ -96,7 +96,7 @@ void KConfigWatcher::onConfigChangeNotification(const QHash<QString, QByteArrayL          for(const QString &groupName: parts) {              group = group.group(groupName);          } -        emit configChanged(group, it.value()); +        Q_EMIT configChanged(group, it.value());      }  } diff --git a/src/core/kcoreconfigskeleton.cpp b/src/core/kcoreconfigskeleton.cpp index bfa3a60f..d5af41e4 100644 --- a/src/core/kcoreconfigskeleton.cpp +++ b/src/core/kcoreconfigskeleton.cpp @@ -1284,7 +1284,7 @@ bool KCoreConfigSkeleton::save()          if (!d->mConfig->sync()) {              return false;          } -        emit configChanged(); +        Q_EMIT configChanged();      }      return true;  } | 
