aboutsummaryrefslogtreecommitdiffstats
path: root/src/particles/qquickgroupgoal_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/particles/qquickgroupgoal_p.h')
-rw-r--r--src/particles/qquickgroupgoal_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/particles/qquickgroupgoal_p.h b/src/particles/qquickgroupgoal_p.h
index 6a31b882a3..5d385f2f36 100644
--- a/src/particles/qquickgroupgoal_p.h
+++ b/src/particles/qquickgroupgoal_p.h
@@ -68,13 +68,13 @@ public:
protected:
virtual bool affectParticle(QQuickParticleData *d, qreal dt);
-signals:
+Q_SIGNALS:
void goalStateChanged(QString arg);
void jumpChanged(bool arg);
-public slots:
+public Q_SLOTS:
void setGoalState(QString arg);
@@ -82,7 +82,7 @@ public slots:
{
if (m_jump != arg) {
m_jump = arg;
- emit jumpChanged(arg);
+ Q_EMIT jumpChanged(arg);
}
}