aboutsummaryrefslogtreecommitdiffstats
path: root/src/particles/qquickrectangleextruder_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/particles/qquickrectangleextruder_p.h')
-rw-r--r--src/particles/qquickrectangleextruder_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/particles/qquickrectangleextruder_p.h b/src/particles/qquickrectangleextruder_p.h
index e0480687a0..f8ab2343c3 100644
--- a/src/particles/qquickrectangleextruder_p.h
+++ b/src/particles/qquickrectangleextruder_p.h
@@ -60,17 +60,17 @@ public:
return m_fill;
}
-signals:
+Q_SIGNALS:
void fillChanged(bool arg);
-public slots:
+public Q_SLOTS:
void setFill(bool arg)
{
if (m_fill != arg) {
m_fill = arg;
- emit fillChanged(arg);
+ Q_EMIT fillChanged(arg);
}
}
protected: