summaryrefslogtreecommitdiffstats
path: root/doc/src/examples
diff options
context:
space:
mode:
authorKent Hansen <khansen@trolltech.com>2009-08-14 12:43:13 (GMT)
committerKent Hansen <khansen@trolltech.com>2009-08-14 12:43:13 (GMT)
commitecc2422553aebd9db06baa9c7a23b21351625947 (patch)
tree8ec3f4ed1d8028a3b1767d548163291f8a892fbb /doc/src/examples
parent8d846a525a67f2b0b680ed836601712a5250ce57 (diff)
downloadQt-ecc2422553aebd9db06baa9c7a23b21351625947.zip
Qt-ecc2422553aebd9db06baa9c7a23b21351625947.tar.gz
Qt-ecc2422553aebd9db06baa9c7a23b21351625947.tar.bz2
remove reference to __qt_sender__ in example doc
It's not used in the example anymore.
Diffstat (limited to 'doc/src/examples')
-rw-r--r--doc/src/examples/qtscriptcalculator.qdoc6
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/src/examples/qtscriptcalculator.qdoc b/doc/src/examples/qtscriptcalculator.qdoc
index e9156b3..21aad23 100644
--- a/doc/src/examples/qtscriptcalculator.qdoc
+++ b/doc/src/examples/qtscriptcalculator.qdoc
@@ -90,10 +90,8 @@
\snippet examples/script/calculator/calculator.js 1
- The digitClicked() function uses the special local variable
- __qt_sender__ to access the object that triggered the signal;
- this gives us a simple way to retrieve the value of the digit
- that was clicked.
+ The digitClicked() function is called when a digit button is
+ clicked, with the input digit as argument.
\snippet examples/script/calculator/calculator.js 2