summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qmlsystempalette.cpp
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-10-22 06:10:31 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-10-22 06:10:31 (GMT)
commita477ea20364da0b0c363b02084adf3c5eff843b1 (patch)
tree2f32d0c74c1dc09c583f4fa50707e867a2a9c160 /src/declarative/util/qmlsystempalette.cpp
parent9e9c979affd1ce76a07c6545c25d2851c7964a7c (diff)
downloadQt-a477ea20364da0b0c363b02084adf3c5eff843b1.zip
Qt-a477ea20364da0b0c363b02084adf3c5eff843b1.tar.gz
Qt-a477ea20364da0b0c363b02084adf3c5eff843b1.tar.bz2
change all ids in doc examples to start with lower case.
Diffstat (limited to 'src/declarative/util/qmlsystempalette.cpp')
-rw-r--r--src/declarative/util/qmlsystempalette.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/declarative/util/qmlsystempalette.cpp b/src/declarative/util/qmlsystempalette.cpp
index 88278c3..014eca8 100644
--- a/src/declarative/util/qmlsystempalette.cpp
+++ b/src/declarative/util/qmlsystempalette.cpp
@@ -62,14 +62,14 @@ QML_DEFINE_TYPE(Qt,4,6,(QT_VERSION&0x00ff00)>>8,SystemPalette,QmlSystemPalette)
Example:
\qml
- SystemPalette { id: MyPalette; colorGroup: Qt.Active }
+ SystemPalette { id: myPalette; colorGroup: Qt.Active }
Rectangle {
width: 640; height: 480
- color: MyPalette.window
+ color: myPalette.window
Text {
anchors.fill: parent
- text: "Hello!"; color: MyPalette.windowText
+ text: "Hello!"; color: myPalette.windowText
}
}
\endqml