diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-04-24 01:00:59 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-04-24 01:00:59 (GMT) |
commit | 67185a8643c1a27cd30a660105333ea36605fba9 (patch) | |
tree | 86a1f14720968a8139dbe647467a82941a5f855c /src/declarative/fx/qfxitem.cpp | |
parent | c0979cc534e9204edc04759b7b6bef7d6980c466 (diff) | |
parent | db815819dae525c64575de38b92afa4cf092ce06 (diff) | |
download | Qt-67185a8643c1a27cd30a660105333ea36605fba9.zip Qt-67185a8643c1a27cd30a660105333ea36605fba9.tar.gz Qt-67185a8643c1a27cd30a660105333ea36605fba9.tar.bz2 |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'src/declarative/fx/qfxitem.cpp')
-rw-r--r-- | src/declarative/fx/qfxitem.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/declarative/fx/qfxitem.cpp b/src/declarative/fx/qfxitem.cpp index 9aa742d..ed65b84 100644 --- a/src/declarative/fx/qfxitem.cpp +++ b/src/declarative/fx/qfxitem.cpp @@ -320,7 +320,7 @@ void QFxContents::setItem(QFxItem *item) */ /*! - \fn void QFxItem::keyPress() + \fn void QFxItem::keyPress(QObject *event) This signal is emitted when a key is pressed. @@ -335,7 +335,7 @@ void QFxContents::setItem(QFxItem *item) */ /*! - \fn void QFxItem::keyRelease() + \fn void QFxItem::keyRelease(QObject *event) This signal is emitted when a key is released. @@ -783,7 +783,7 @@ void QFxItem::setQml(const QString &qml) if(!d->_qmlcomp->isLoading()) qmlLoaded(); else - QObject::connect(d->_qmlcomp, SIGNAL(statusChanged(Status)), + QObject::connect(d->_qmlcomp, SIGNAL(statusChanged(QmlComponent::Status)), this, SLOT(qmlLoaded())); } } @@ -1650,7 +1650,7 @@ void QFxItem::newChild(const QString &type) if(!d->_qmlnewcomp.last()->isLoading()) qmlLoaded(); else - connect(d->_qmlnewcomp.last(), SIGNAL(statusChanged(Status)), + connect(d->_qmlnewcomp.last(), SIGNAL(statusChanged(QmlComponent::Status)), this, SLOT(qmlLoaded())); } |