aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2012-07-18 13:53:40 +1000
committerQt by Nokia <qt-info@nokia.com>2012-08-28 01:51:19 +0200
commit3912bbaceab166eb116447311eb16453e4f26edf (patch)
treeb44561b4fbded41d7011e79c3d9a5411a1de438c /src/qml/doc/snippets
parentc2f2ae8ce90e621cc3835428c40c116fbdc593e6 (diff)
Update usage of smooth and antialiasing.
Change-Id: Icc8b28bdd466389ed3f269f076f1bdb6e9abe3f2 Reviewed-by: Yunqiao Yin <charles.yin@nokia.com> Reviewed-by: Bea Lam <bea.lam@nokia.com>
Diffstat (limited to 'src/qml/doc/snippets')
-rw-r--r--src/qml/doc/snippets/qml/qml-documents/qmldocuments.qml2
-rw-r--r--src/qml/doc/snippets/qml/reusablecomponents/Button.qml2
-rw-r--r--src/qml/doc/snippets/qml/reusablecomponents/focusbutton.qml2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/doc/snippets/qml/qml-documents/qmldocuments.qml b/src/qml/doc/snippets/qml/qml-documents/qmldocuments.qml
index cf60741f0c..36d8c95a6d 100644
--- a/src/qml/doc/snippets/qml/qml-documents/qmldocuments.qml
+++ b/src/qml/doc/snippets/qml/qml-documents/qmldocuments.qml
@@ -47,7 +47,7 @@ Rectangle {
width: 100; height: 30
border.width: 1
radius: 5
- smooth: true
+ antialiasing: true
gradient: Gradient {
GradientStop { position: 0.0; color: "darkGray" }
diff --git a/src/qml/doc/snippets/qml/reusablecomponents/Button.qml b/src/qml/doc/snippets/qml/reusablecomponents/Button.qml
index cedc782f75..0e41868e7d 100644
--- a/src/qml/doc/snippets/qml/reusablecomponents/Button.qml
+++ b/src/qml/doc/snippets/qml/reusablecomponents/Button.qml
@@ -48,7 +48,7 @@ Rectangle {
//! [properties]
width: 145; height: 60
color: "blue"
- smooth: true; radius: 9
+ antialiasing: true; radius: 9
property alias text: label.text
//! [properties]
//! [object alias]
diff --git a/src/qml/doc/snippets/qml/reusablecomponents/focusbutton.qml b/src/qml/doc/snippets/qml/reusablecomponents/focusbutton.qml
index 34fc6294e2..535641e526 100644
--- a/src/qml/doc/snippets/qml/reusablecomponents/focusbutton.qml
+++ b/src/qml/doc/snippets/qml/reusablecomponents/focusbutton.qml
@@ -59,7 +59,7 @@ FocusScope {
//! [properties]
width: 145; height: 60
color: "blue"
- smooth: true; radius: 9
+ antialiasing: true; radius: 9
property alias text: label.text
//! [properties]
border {color: "#B9C5D0"; width: 1}