diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2010-04-06 06:50:45 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2010-04-06 06:50:45 (GMT) |
commit | ab9c4f04fe86cbeed28800cbe0473738d9959871 (patch) | |
tree | a1c004c26d508b4948c7941764e34f374838321c /src/imports | |
parent | 51381e1454070960bc3c1d6acdfa8e742c37620c (diff) | |
download | Qt-ab9c4f04fe86cbeed28800cbe0473738d9959871.zip Qt-ab9c4f04fe86cbeed28800cbe0473738d9959871.tar.gz Qt-ab9c4f04fe86cbeed28800cbe0473738d9959871.tar.bz2 |
Fix anchors, etc.
(pass parser status up to QDeclarativeItem)
Diffstat (limited to 'src/imports')
-rw-r--r-- | src/imports/gestures/qdeclarativegesturearea.cpp | 1 | ||||
-rw-r--r-- | src/imports/gestures/qdeclarativegesturearea_p.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/imports/gestures/qdeclarativegesturearea.cpp b/src/imports/gestures/qdeclarativegesturearea.cpp index 9b4af03..b8c8f57 100644 --- a/src/imports/gestures/qdeclarativegesturearea.cpp +++ b/src/imports/gestures/qdeclarativegesturearea.cpp @@ -231,6 +231,7 @@ void QDeclarativeGestureArea::connectSignals() void QDeclarativeGestureArea::componentComplete() { + QDeclarativeItem::componentComplete(); Q_D(QDeclarativeGestureArea); d->componentcomplete=true; connectSignals(); diff --git a/src/imports/gestures/qdeclarativegesturearea_p.h b/src/imports/gestures/qdeclarativegesturearea_p.h index 8d7fdfe..8e2c066 100644 --- a/src/imports/gestures/qdeclarativegesturearea_p.h +++ b/src/imports/gestures/qdeclarativegesturearea_p.h @@ -65,8 +65,6 @@ class Q_DECLARATIVE_EXPORT QDeclarativeGestureArea : public QDeclarativeItem Q_PROPERTY(QGesture *gesture READ gesture) - Q_INTERFACES(QDeclarativeParserStatus) - public: QDeclarativeGestureArea(QDeclarativeItem *parent=0); ~QDeclarativeGestureArea(); |