summaryrefslogtreecommitdiffstats
path: root/examples/script/helloscript/helloscript.js
diff options
context:
space:
mode:
authorck <qt-info@nokia.com>2009-12-03 13:38:49 (GMT)
committerck <qt-info@nokia.com>2009-12-03 13:38:49 (GMT)
commit6aee4cbee38e007fb8141de7d577aa73e5734ef5 (patch)
tree964e929477cb27f9de271dfd08f2da88eb338981 /examples/script/helloscript/helloscript.js
parentd6c21efa5b67fc55f9edfa4aabeb48adf68ee131 (diff)
parent3f18623dd8f26857d9af032c41095818f5346910 (diff)
downloadQt-6aee4cbee38e007fb8141de7d577aa73e5734ef5.zip
Qt-6aee4cbee38e007fb8141de7d577aa73e5734ef5.tar.gz
Qt-6aee4cbee38e007fb8141de7d577aa73e5734ef5.tar.bz2
Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt
Diffstat (limited to 'examples/script/helloscript/helloscript.js')
-rw-r--r--examples/script/helloscript/helloscript.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/script/helloscript/helloscript.js b/examples/script/helloscript/helloscript.js
new file mode 100644
index 0000000..6d8e87c
--- /dev/null
+++ b/examples/script/helloscript/helloscript.js
@@ -0,0 +1,5 @@
+//! [0]
+button.text = qsTr('Hello World!');
+button.styleSheet = 'font-style: italic';
+button.show();
+//! [0]