summaryrefslogtreecommitdiffstats
path: root/doc/src/examples/windowflags.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/windowflags.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/windowflags.qdoc')
-rw-r--r--doc/src/examples/windowflags.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/examples/windowflags.qdoc b/doc/src/examples/windowflags.qdoc
index 09dc45c27f..21b983d4e1 100644
--- a/doc/src/examples/windowflags.qdoc
+++ b/doc/src/examples/windowflags.qdoc
@@ -88,7 +88,7 @@
In the constructor we first create the preview window. Then we
create the group boxes containing the available window flags using
the private \c createTypeGroupBox() and \c createHintsGroupBox()
- functions. In addition we create a \gui Quit button. We put the
+ functions. In addition we create a \uicontrol Quit button. We put the
button and a stretchable space in a separate layout to make the
button appear in the \c WindowFlag widget's right bottom corner.
@@ -181,7 +181,7 @@
read-only text editor. It is also provided with a QPushbutton that
closes the window.
- We reimplement the constructor to create the \gui Close button and
+ We reimplement the constructor to create the \uicontrol Close button and
the text editor, and the QWidget::setWindowFlags() function to
display the names of the window flags.
@@ -202,7 +202,7 @@
breaks were guaranteed, using another QTextEdit::LineWrapMode
would perhaps make more sense.
- Then we create the \gui Close button, and put both the widgets
+ Then we create the \uicontrol Close button, and put both the widgets
into a QVBoxLayout before we set the window title.
\snippet examples/widgets/windowflags/previewwindow.cpp 1