summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlmetaproperty.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/qml/qmlmetaproperty.h')
-rw-r--r--src/declarative/qml/qmlmetaproperty.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/declarative/qml/qmlmetaproperty.h b/src/declarative/qml/qmlmetaproperty.h
index 9daef59..688c4fd 100644
--- a/src/declarative/qml/qmlmetaproperty.h
+++ b/src/declarative/qml/qmlmetaproperty.h
@@ -86,7 +86,6 @@ public:
QVariant read() const;
void write(const QVariant &) const;
- void emitSignal();
bool hasChangedNotifier() const;
bool needsChangedNotifier() const;
@@ -101,7 +100,6 @@ public:
enum Type { Invalid = 0x00,
Property = 0x01,
SignalProperty = 0x02,
- Signal = 0x04,
Default = 0x08,
Attached = 0x10 };
@@ -123,8 +121,10 @@ public:
QMetaProperty property() const;
- QmlBindableValue *binding();
- static int findSignal(const QObject *, const char *);
+ QmlBindableValue *binding() const;
+ QmlBindableValue *setBinding(QmlBindableValue *) const;
+
+ static QmlMetaProperty createProperty(QObject *, const QString &);
int coreIndex() const;
private: