diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-29 08:13:24 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-29 08:13:24 (GMT) |
commit | 567a18967b4d656b9f12a505f3146732d96eb935 (patch) | |
tree | cc4780bc2f11c9e874daa651849bf78b21cc1784 /doc/src/snippets/code | |
parent | 0eaa3466077839b0cef2ad6c326d80f398eccae7 (diff) | |
download | Qt-567a18967b4d656b9f12a505f3146732d96eb935.zip Qt-567a18967b4d656b9f12a505f3146732d96eb935.tar.gz Qt-567a18967b4d656b9f12a505f3146732d96eb935.tar.bz2 |
Add CONSTANT attribute to Q_PROPERTY()
This will be used by the declarative module to determine if a property lacking a NOTIFY signal is truly constant, or just missing a NOTIFY signal.
Diffstat (limited to 'doc/src/snippets/code')
-rw-r--r-- | doc/src/snippets/code/doc_src_properties.qdoc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/snippets/code/doc_src_properties.qdoc b/doc/src/snippets/code/doc_src_properties.qdoc index 377cc9c..64e5377 100644 --- a/doc/src/snippets/code/doc_src_properties.qdoc +++ b/doc/src/snippets/code/doc_src_properties.qdoc @@ -7,7 +7,8 @@ Q_PROPERTY(type name [DESIGNABLE bool] [SCRIPTABLE bool] [STORED bool] - [USER bool]) + [USER bool] + [CONSTANT]) //! [0] |