aboutsummaryrefslogtreecommitdiff
path: root/libcontextprovider/src/propertyprivate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcontextprovider/src/propertyprivate.cpp')
-rw-r--r--libcontextprovider/src/propertyprivate.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcontextprovider/src/propertyprivate.cpp b/libcontextprovider/src/propertyprivate.cpp
index 57d6cf3e..a59566d6 100644
--- a/libcontextprovider/src/propertyprivate.cpp
+++ b/libcontextprovider/src/propertyprivate.cpp
@@ -107,7 +107,7 @@ void PropertyPrivate::emitValue()
if (value.isNull() == false) {
values << value;
}
- emit valueChanged(values, timestamp);
+ Q_EMIT valueChanged(values, timestamp);
}
/// Set the PropertyPrivate to subscribed state. If it was in the
@@ -117,7 +117,7 @@ void PropertyPrivate::setSubscribed()
{
if (subscribed == false) {
subscribed = true;
- emit firstSubscriberAppeared(key);
+ Q_EMIT firstSubscriberAppeared(key);
}
}
@@ -128,7 +128,7 @@ void PropertyPrivate::setUnsubscribed()
{
if (subscribed == true) {
subscribed = false;
- emit lastSubscriberDisappeared(key);
+ Q_EMIT lastSubscriberDisappeared(key);
}
}