summaryrefslogtreecommitdiffstats
path: root/src/declarative
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-11-16 04:11:27 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-11-16 04:11:27 (GMT)
commit759d4d27d644c6ededf638b73947968d85ced0d9 (patch)
tree4cb876e5cfd1bc54b3ce76f7dcbebd4634a78451 /src/declarative
parent274cb027444e26d465888842310000963b06aae9 (diff)
parent86f89023b52e00d155d6b14762f1a99a70d67e60 (diff)
downloadQt-759d4d27d644c6ededf638b73947968d85ced0d9.zip
Qt-759d4d27d644c6ededf638b73947968d85ced0d9.tar.gz
Qt-759d4d27d644c6ededf638b73947968d85ced0d9.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'src/declarative')
-rw-r--r--src/declarative/util/qmlstate.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/declarative/util/qmlstate.cpp b/src/declarative/util/qmlstate.cpp
index 7cc548f..1f5dbad 100644
--- a/src/declarative/util/qmlstate.cpp
+++ b/src/declarative/util/qmlstate.cpp
@@ -433,8 +433,11 @@ void QmlState::apply(QmlStateGroup *group, QmlTransition *trans, QmlState *rever
// Output for debugging
if (stateChangeDebug()) {
foreach(const Action &action, applyList) {
- qWarning() << " Action:" << action.property.object()
- << action.property.name() << action.toValue;
+ if (action.event)
+ qWarning() << " Action event:" << action.event;
+ else
+ qWarning() << " Action:" << action.property.object()
+ << action.property.name() << action.toValue;
}
}