diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-26 01:44:51 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-26 01:48:56 (GMT) |
commit | 71412e3d9b9152cbbc42245751fc197672fc7b08 (patch) | |
tree | 72ef51ddd77064ad1442f5ba647ce2581a5ceceb /src/declarative/qml/qdeclarativeproperty.h | |
parent | e1abb8b075c8fc24bc768619ca2dbe1204431101 (diff) | |
download | Qt-71412e3d9b9152cbbc42245751fc197672fc7b08.zip Qt-71412e3d9b9152cbbc42245751fc197672fc7b08.tar.gz Qt-71412e3d9b9152cbbc42245751fc197672fc7b08.tar.bz2 |
Remove unnecessary QDeclarativeProperty::Type enum values
Diffstat (limited to 'src/declarative/qml/qdeclarativeproperty.h')
-rw-r--r-- | src/declarative/qml/qdeclarativeproperty.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/declarative/qml/qdeclarativeproperty.h b/src/declarative/qml/qdeclarativeproperty.h index be1065e..3504a15 100644 --- a/src/declarative/qml/qdeclarativeproperty.h +++ b/src/declarative/qml/qdeclarativeproperty.h @@ -73,8 +73,7 @@ public: enum Type { Invalid = 0x00, Property = 0x01, SignalProperty = 0x02, - Default = 0x08, - ValueTypeProperty = 0x10 + Default = 0x08 }; QDeclarativeProperty(); |