summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative/extending.qdoc
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-07-31 01:34:36 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-07-31 01:34:36 (GMT)
commit56f67f2fdf84fe5e7660552c52b67c4e474054dd (patch)
tree7e1b59cd738432c8a48616621934381ddf2e298c /doc/src/declarative/extending.qdoc
parent8d9690cca4a13d4951b3d303eb57dbe4e25ce21c (diff)
downloadQt-56f67f2fdf84fe5e7660552c52b67c4e474054dd.zip
Qt-56f67f2fdf84fe5e7660552c52b67c4e474054dd.tar.gz
Qt-56f67f2fdf84fe5e7660552c52b67c4e474054dd.tar.bz2
Rename centeredIn to centerIn.
Diffstat (limited to 'doc/src/declarative/extending.qdoc')
-rw-r--r--doc/src/declarative/extending.qdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/declarative/extending.qdoc b/doc/src/declarative/extending.qdoc
index 88abfe6..27c473e 100644
--- a/doc/src/declarative/extending.qdoc
+++ b/doc/src/declarative/extending.qdoc
@@ -616,7 +616,7 @@ controls the color of the inner rectangle.
color: "red"; width: 100; height: 100
Rect {
- anchors.centeredIn: parent
+ anchors.centerIn: parent
width: parent.width - 10
height: parent.height - 10
color: innerColor
@@ -661,7 +661,7 @@ Rect {
color: "red"; width: 100; height: 100
Rect {
id: InnerRect
- anchors.centeredIn: parent
+ anchors.centerIn: parent
width: parent.width - 10
height: parent.height - 10
color: "black"
@@ -696,7 +696,7 @@ Rect {
color: "red"; width: 100; height: 100
Rect {
id: InnerRect
- anchors.centeredIn: parent
+ anchors.centerIn: parent
width: parent.width - 10
height: parent.height - 10
color: "black"
@@ -863,7 +863,7 @@ Rect {
color: "blue"
Text {
id: MyText
- anchors.centeredIn: parent
+ anchors.centerIn: parent
}
}
\endcode