diff options
author | Martin Jones <martin.jones@nokia.com> | 2010-03-01 04:33:12 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2010-03-01 04:33:12 (GMT) |
commit | 5aa4dd9f3fdc11d00b0b92a4dd5ec66cc4d1f24e (patch) | |
tree | 042749d7e7aa1efbfdaf422f2b36af82428673a8 /src/declarative/qml/qdeclarativeboundsignal.cpp | |
parent | 4af75fcc9bf4d1b3481a2175f26de2a219d25cbf (diff) | |
download | Qt-5aa4dd9f3fdc11d00b0b92a4dd5ec66cc4d1f24e.zip Qt-5aa4dd9f3fdc11d00b0b92a4dd5ec66cc4d1f24e.tar.gz Qt-5aa4dd9f3fdc11d00b0b92a4dd5ec66cc4d1f24e.tar.bz2 |
Rename QDeclarativeGraphics_setParent_noEvent QDeclarative_setParent_noEvent
Diffstat (limited to 'src/declarative/qml/qdeclarativeboundsignal.cpp')
-rw-r--r-- | src/declarative/qml/qdeclarativeboundsignal.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/qml/qdeclarativeboundsignal.cpp b/src/declarative/qml/qdeclarativeboundsignal.cpp index ce396fd..6a5a102 100644 --- a/src/declarative/qml/qdeclarativeboundsignal.cpp +++ b/src/declarative/qml/qdeclarativeboundsignal.cpp @@ -104,7 +104,7 @@ QDeclarativeBoundSignal::QDeclarativeBoundSignal(QObject *scope, const QMetaMeth // is that they both do the work to figure it out. Boo hoo. if (evaluateIdx == -1) evaluateIdx = metaObject()->methodCount(); - QDeclarativeGraphics_setParent_noEvent(this, parent); + QDeclarative_setParent_noEvent(this, parent); QMetaObject::connect(scope, m_signal.methodIndex(), this, evaluateIdx); } @@ -120,7 +120,7 @@ QDeclarativeBoundSignal::QDeclarativeBoundSignal(QDeclarativeContext *ctxt, cons // is that they both do the work to figure it out. Boo hoo. if (evaluateIdx == -1) evaluateIdx = metaObject()->methodCount(); - QDeclarativeGraphics_setParent_noEvent(this, parent); + QDeclarative_setParent_noEvent(this, parent); QMetaObject::connect(scope, m_signal.methodIndex(), this, evaluateIdx); m_expression = new QDeclarativeExpression(ctxt, val, scope); |