summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/fx')
-rw-r--r--src/declarative/fx/qfxkeyactions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/fx/qfxkeyactions.cpp b/src/declarative/fx/qfxkeyactions.cpp
index 5a1fd7d..4aae74f 100644
--- a/src/declarative/fx/qfxkeyactions.cpp
+++ b/src/declarative/fx/qfxkeyactions.cpp
@@ -899,7 +899,7 @@ void QFxKeyActions::keyPressEvent(QKeyEvent *event)
{
Qt::Key key = (Qt::Key)event->key();
if (d->enabled && d->key(key)) {
- QmlExpression b(qmlContext(this), d->action(key), this, false);
+ QmlExpression b(qmlContext(this), d->action(key), this);
b.value();
event->accept();
} else {