summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxpositioners.h
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-10-09 02:43:43 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-10-09 02:43:43 (GMT)
commit8cefc95e3d91cb16ef6a7b16c18ef1e23a3911a9 (patch)
treeb413fc00b06652fd75b3faa765ad3e2a97ef24b3 /src/declarative/fx/qfxpositioners.h
parentf21c1f444de012c38207ed93db8c3470cf197631 (diff)
downloadQt-8cefc95e3d91cb16ef6a7b16c18ef1e23a3911a9.zip
Qt-8cefc95e3d91cb16ef6a7b16c18ef1e23a3911a9.tar.gz
Qt-8cefc95e3d91cb16ef6a7b16c18ef1e23a3911a9.tar.bz2
Add missing NOTIFY
Diffstat (limited to 'src/declarative/fx/qfxpositioners.h')
-rw-r--r--src/declarative/fx/qfxpositioners.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/declarative/fx/qfxpositioners.h b/src/declarative/fx/qfxpositioners.h
index 89a61d7..d62da08 100644
--- a/src/declarative/fx/qfxpositioners.h
+++ b/src/declarative/fx/qfxpositioners.h
@@ -59,7 +59,7 @@ class Q_DECLARATIVE_EXPORT QFxBasePositioner : public QFxItem
{
Q_OBJECT
- Q_PROPERTY(int spacing READ spacing WRITE setSpacing)
+ Q_PROPERTY(int spacing READ spacing WRITE setSpacing NOTIFY spacingChanged)
Q_PROPERTY(QmlTransition *move READ move WRITE setMove)
Q_PROPERTY(QmlTransition *add READ add WRITE setAdd)
Q_PROPERTY(QmlTransition *remove READ remove WRITE setRemove)
@@ -93,6 +93,7 @@ protected:
Q_SIGNALS:
void layoutItemChanged();
+ void spacingChanged();
protected Q_SLOTS:
virtual void doPositioning()=0;