summaryrefslogtreecommitdiffstats
path: root/doc/src/examples
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2009-08-28 07:01:09 (GMT)
committeraxis <qt-info@nokia.com>2009-08-28 07:11:38 (GMT)
commit813b040339b965ce31a0e7115fdee50d1d9e7ffd (patch)
tree835367ff28ea3e3240cef87bc70c05d2de12b2c7 /doc/src/examples
parent397cbd5c9c0afee65258ff91bc6ca29c548c85cd (diff)
downloadQt-813b040339b965ce31a0e7115fdee50d1d9e7ffd.zip
Qt-813b040339b965ce31a0e7115fdee50d1d9e7ffd.tar.gz
Qt-813b040339b965ce31a0e7115fdee50d1d9e7ffd.tar.bz2
Corrected a few spelling mistakes and a misplaced code section.
RevBy: Trust me
Diffstat (limited to 'doc/src/examples')
-rw-r--r--doc/src/examples/inputpanel.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/examples/inputpanel.qdoc b/doc/src/examples/inputpanel.qdoc
index 9a4d7f9..06c19ba 100644
--- a/doc/src/examples/inputpanel.qdoc
+++ b/doc/src/examples/inputpanel.qdoc
@@ -71,7 +71,7 @@
the input panel and sending input method events to the receiving
widgets.
- The \c inputPanel member is a pointer to input panel widget
+ The \c inputPanel member is a pointer to the input panel widget
itself; in other words, the window that will display the buttons
used for input.
@@ -210,7 +210,7 @@
In the \c event() function we handle QEvent::WindowActivate
event, which occurs if the focus switches to the input panel.
- \snippet examples/tools/inputpanel/myinputpanel.cpp 0
+ \snippet examples/tools/inputpanel/myinputpanel.cpp 1
Since we want avoid focus on the input panel, we immediately call
QWidget::activateWindow() on the widget that last had focus, so
@@ -226,7 +226,7 @@
\snippet examples/tools/inputpanel/main.cpp main
- With the input context in place, we set up and shows the user interface
+ With the input context in place, we set up and show the user interface
made in Qt Designer before running the event loop.
\section1 Further Reading