summaryrefslogtreecommitdiff
path: root/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2010-08-23 10:07:45 +0200
committerKai Koehne <kai.koehne@nokia.com>2010-08-23 10:09:28 +0200
commit8eecf8fcd85b97406c3a7ee29d45540855e40830 (patch)
treebf64d473758c6e84b48c7a1f180f7c0e4a316e9b /src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h
parenta1289a6eadd3fe8ca11a64a483702ca2e056b357 (diff)
downloadqt-creator-8eecf8fcd85b97406c3a7ee29d45540855e40830.tar.gz
Qml: Fix more invalid NOTIFY signals
Remove unimplemented NOTIFY signals. Furthermore the signals must be declared in the same class as the Q_PROPERTY (not in a base class): Fix this in filefilteritems.h.
Diffstat (limited to 'src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h')
-rw-r--r--src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h
index ff3912475f..55ba8061e7 100644
--- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h
+++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h
@@ -82,7 +82,7 @@ class PropertyEditorValue : public QObject
Q_PROPERTY(bool isInModel READ isInModel NOTIFY valueChangedQml FINAL)
Q_PROPERTY(bool isInSubState READ isInSubState NOTIFY valueChangedQml FINAL)
Q_PROPERTY(bool isBound READ isBound NOTIFY isBoundChanged FINAL)
- Q_PROPERTY(bool isValid READ isValid NOTIFY isValid FINAL)
+ Q_PROPERTY(bool isValid READ isValid NOTIFY isValidChanged FINAL)
Q_PROPERTY(QString name READ name FINAL)
Q_PROPERTY(PropertyEditorNodeWrapper* complexNode READ complexNode NOTIFY complexNodeChanged FINAL)