X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fqml%2Fqml%2Fqqmlnotifier.cpp;h=1ed3a2957db47c05de96772f61584c306180c599;hb=9542511b013588b2ceb132ec8b34879ec904a21e;hp=270eee52b45b113a0ef1b60f448488d2847c01dc;hpb=6d2ed5d0b645f5af383a123e869d061b235b4b85;p=profile%2Fivi%2Fqtdeclarative.git diff --git a/src/qml/qml/qqmlnotifier.cpp b/src/qml/qml/qqmlnotifier.cpp index 270eee5..1ed3a29 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;