aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickpathview_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/items/qquickpathview_p.h')
-rw-r--r--src/quick/items/qquickpathview_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quick/items/qquickpathview_p.h b/src/quick/items/qquickpathview_p.h
index 998707aa41..800dcc646a 100644
--- a/src/quick/items/qquickpathview_p.h
+++ b/src/quick/items/qquickpathview_p.h
@@ -245,7 +245,7 @@ public:
void setIsCurrentItem(bool c) {
if (m_isCurrent != c) {
m_isCurrent = c;
- emit currentItemChanged();
+ Q_EMIT currentItemChanged();
}
}
@@ -256,7 +256,7 @@ public:
void setOnPath(bool on) {
if (on != m_onPath) {
m_onPath = on;
- emit pathChanged();
+ Q_EMIT pathChanged();
}
}
qreal m_percent;