aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlnotifier.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qqmlnotifier.cpp')
-rw-r--r--src/qml/qml/qqmlnotifier.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/qml/qqmlnotifier.cpp b/src/qml/qml/qqmlnotifier.cpp
index 270eee52b4..1ed3a2957d 100644
--- a/src/qml/qml/qqmlnotifier.cpp
+++ b/src/qml/qml/qqmlnotifier.cpp
@@ -44,20 +44,20 @@
QT_BEGIN_NAMESPACE
-void QQmlNotifier::emitNotify(QQmlNotifierEndpoint *endpoint)
+void QQmlNotifier::emitNotify(QQmlNotifierEndpoint *endpoint, void **a)
{
QQmlNotifierEndpoint **oldDisconnected = endpoint->disconnected;
endpoint->disconnected = &endpoint;
endpoint->notifying = 1;
if (endpoint->next)
- emitNotify(endpoint->next);
+ emitNotify(endpoint->next, a);
if (endpoint) {
Q_ASSERT(endpoint->callback);
- endpoint->callback(endpoint);
+ endpoint->callback(endpoint, a);
if (endpoint)
endpoint->disconnected = oldDisconnected;