summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative/extending.qdoc
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-10-09 10:17:04 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-10-09 10:17:04 (GMT)
commita700d7c263748d3635eb06a7091164fd75ec608c (patch)
tree17fc6e408bc49003ddb5800ca6a60f5725849626 /doc/src/declarative/extending.qdoc
parent65aa9ff2704fed181eee2b189fc0db81a59ff75f (diff)
downloadQt-a700d7c263748d3635eb06a7091164fd75ec608c.zip
Qt-a700d7c263748d3635eb06a7091164fd75ec608c.tar.gz
Qt-a700d7c263748d3635eb06a7091164fd75ec608c.tar.bz2
Add id aliases
Diffstat (limited to 'doc/src/declarative/extending.qdoc')
-rw-r--r--doc/src/declarative/extending.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/declarative/extending.qdoc b/doc/src/declarative/extending.qdoc
index 649eab1..bc18108 100644
--- a/doc/src/declarative/extending.qdoc
+++ b/doc/src/declarative/extending.qdoc
@@ -645,13 +645,13 @@ value, a property alias includes a compulsary alias reference. The alias
reference is used to locate the aliased property. While similar to a property
binding, the alias reference syntax is highly restricted.
-An alias reference takes the form
+An alias reference takes one of the following forms
\code
<Id>.<property>
+ <Id>
\endcode
where <Id> must refer to an object id within the same component as the type
-declaring the alias, and <property> refers to a property on this object. The
-alias reference syntax may become more flexibly in future releases.
+declaring the alias, and, optionally, <property> refers to a property on that object.
Here is the property definition example rewritten to use property aliases.
\code