aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Griebl <robert.griebl@pelagicore.com>2018-12-10 21:14:04 +0100
committerRobert Griebl <robert.griebl@pelagicore.com>2018-12-10 20:20:47 +0000
commitb1494ffa7d0c9bfa68019a3fc4969f9124d4889c (patch)
treece9d4f28f11f69d1bec38b01d9fafbae04f66826
parent60cb95508c5dac036663dfcaa2c60e884b5dcad9 (diff)
Fix typo in notify signal emission
Change-Id: Ic2c298d14eb85ee8702eb751dd269eb0e3e11cc6 Reviewed-by: Michael Brasser <michael.brasser@live.com>
-rw-r--r--src/quick/util/qquickpath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quick/util/qquickpath.cpp b/src/quick/util/qquickpath.cpp
index 53b72d1e58..60d725d650 100644
--- a/src/quick/util/qquickpath.cpp
+++ b/src/quick/util/qquickpath.cpp
@@ -2007,7 +2007,7 @@ void QQuickPathAngleArc::setCenterY(qreal centerY)
return;
_centerY = centerY;
- emit centerXChanged();
+ emit centerYChanged();
emit changed();
}