summaryrefslogtreecommitdiffstats
path: root/doc/src/examples/lineedits.qdoc
diff options
context:
space:
mode:
authorJeremy Katz <jeremy.katz@nokia.com>2012-08-01 14:36:13 +0200
committerQt by Nokia <qt-info@nokia.com>2012-08-01 15:37:46 +0200
commita68577e7e07cce40cac142f6e2b386a76f3ecbd1 (patch)
treed79bbae4fcebb76f72aa1a56beac09b945967248 /doc/src/examples/lineedits.qdoc
parentd61c356516cddb9cb0862d13479acd4c3310a972 (diff)
replace \key and \gui qdoc commands with \uicontrol
Change-Id: I0753305d4fe1ea20417f451766101da1247dfeeb Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'doc/src/examples/lineedits.qdoc')
-rw-r--r--doc/src/examples/lineedits.qdoc12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/src/examples/lineedits.qdoc b/doc/src/examples/lineedits.qdoc
index f30f4aee29..70d85cff69 100644
--- a/doc/src/examples/lineedits.qdoc
+++ b/doc/src/examples/lineedits.qdoc
@@ -115,7 +115,7 @@
The slots respond to signals emitted when the comboboxes are changed by the
user.
- When the combobox for the \gui{Echo} group box is changed, the \c echoChanged()
+ When the combobox for the \uicontrol{Echo} group box is changed, the \c echoChanged()
slot is called:
\snippet examples/widgets/lineedits/window.cpp 9
@@ -123,7 +123,7 @@
The slot updates the line edit in the same group box to use an echo mode that
corresponds to the entry described in the combobox.
- When the combobox for the \gui{Validator} group box is changed, the
+ When the combobox for the \uicontrol{Validator} group box is changed, the
\c validatorChanged() slot is called:
\snippet examples/widgets/lineedits/window.cpp 10
@@ -133,7 +133,7 @@
We clear the line edit in this case to ensure that the new validator is
initially given valid input to work with.
- When the combobox for the \gui{Alignment} group box is changed, the
+ When the combobox for the \uicontrol{Alignment} group box is changed, the
\c alignmentChanged() slot is called:
\snippet examples/widgets/lineedits/window.cpp 11
@@ -142,7 +142,7 @@
the description selected in the combobox.
The \c inputMaskChanged() slot handles changes to the combobox in the
- \gui{Input Mask} group box:
+ \uicontrol{Input Mask} group box:
\snippet examples/widgets/lineedits/window.cpp 12
@@ -151,11 +151,11 @@
the mask is disabled if an empty string is used.
The \c accessChanged() slot handles changes to the combobox in the
- \gui{Access} group box:
+ \uicontrol{Access} group box:
\snippet examples/widgets/lineedits/window.cpp 13
- Here, we simply associate the \gui{False} and \gui{True} entries in the combobox
+ Here, we simply associate the \uicontrol{False} and \uicontrol{True} entries in the combobox
with \c false and \c true values to be passed to QLineEdit::setReadOnly(). This
allows the user to enable and disable input to the line edit.
*/