summaryrefslogtreecommitdiff
path: root/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@nokia.com>2010-01-28 11:59:07 +0100
committerThomas Hartmann <Thomas.Hartmann@nokia.com>2010-01-28 11:59:07 +0100
commit7a379001cb8836379fdfec5b75fb25e88af527cf (patch)
treeee750f127913a0e7b247af7a387592f8424c6a8b /src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h
parent8e847749ac4c2298c4bd8178493fb0a5066f408a (diff)
downloadqt-creator-7a379001cb8836379fdfec5b75fb25e88af527cf.tar.gz
QmlDesigner.propertyEditor: adding notifiers to PropertyEditorValue
Diffstat (limited to 'src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h')
-rw-r--r--src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h
index c612669ad4..d9ec46b052 100644
--- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h
+++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h
@@ -81,8 +81,8 @@ class PropertyEditorValue : public QObject
Q_OBJECT
Q_PROPERTY(QVariant value READ value WRITE setValueWithEmit NOTIFY valueChanged)
Q_PROPERTY(QString expression READ expression WRITE setExpressionWithEmit NOTIFY expressionChanged FINAL)
- Q_PROPERTY(bool isInModel READ isInModel FINAL)
- Q_PROPERTY(bool isInSubState READ isInSubState FINAL)
+ Q_PROPERTY(bool isInModel READ isInModel NOTIFY valueChanged FINAL)
+ Q_PROPERTY(bool isInSubState READ isInSubState NOTIFY valueChanged FINAL)
Q_PROPERTY(bool isBound READ isBound NOTIFY isBoundChanged FINAL)
Q_PROPERTY(bool isValid READ isValid NOTIFY isValid FINAL)
Q_PROPERTY(QString name READ name FINAL)