summaryrefslogtreecommitdiffstats
path: root/examples/declarative
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-11-25 04:58:35 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-11-25 04:58:35 (GMT)
commit9eb6102693c3d73259a236becb6701a0787bb4e3 (patch)
tree507ce82d404b7f06986f2c875930ac7898971954 /examples/declarative
parent78ecb1477d2a4b5045c943cee6224625156b5f24 (diff)
downloadQt-9eb6102693c3d73259a236becb6701a0787bb4e3.zip
Qt-9eb6102693c3d73259a236becb6701a0787bb4e3.tar.gz
Qt-9eb6102693c3d73259a236becb6701a0787bb4e3.tar.bz2
use right type
Diffstat (limited to 'examples/declarative')
-rw-r--r--examples/declarative/tutorials/helloworld/Cell.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/tutorials/helloworld/Cell.qml b/examples/declarative/tutorials/helloworld/Cell.qml
index ab6e565..c38b40e 100644
--- a/examples/declarative/tutorials/helloworld/Cell.qml
+++ b/examples/declarative/tutorials/helloworld/Cell.qml
@@ -8,7 +8,7 @@ Item {
property alias color: rectangle.color
//![4]
//![5]
- signal clicked(string color)
+ signal clicked(color color)
//![5]
width: 40; height: 25