aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2011-06-01 08:52:10 +1000
committerMartin Jones <martin.jones@nokia.com>2011-06-01 08:52:10 +1000
commit7afd99c4789bd7aca5856bb532e8259377cda1ed (patch)
treefb28362f3ecfe4f9ffbd7177b5631747f7f0fd6d /doc
parentfbfb27a44a824fe479b526cbc6ccd4696d674c83 (diff)
Small doc fix.
Diffstat (limited to 'doc')
-rw-r--r--doc/src/declarative/qdeclarativeintro.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/declarative/qdeclarativeintro.qdoc b/doc/src/declarative/qdeclarativeintro.qdoc
index 96f73d0937..97739e232c 100644
--- a/doc/src/declarative/qdeclarativeintro.qdoc
+++ b/doc/src/declarative/qdeclarativeintro.qdoc
@@ -236,8 +236,8 @@ properties are modified:
Rectangle {
width: 100; height: 100
- onWidthChanged: console.log("Width has changed to:", width)
- onColorChanged: console.log("Color has changed to:", color)
+ onWidthChanged: console.log("Width has changed to: " + width)
+ onColorChanged: console.log("Color has changed to: " + color)
}
\endqml