summaryrefslogtreecommitdiffstats
path: root/doc/src/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/widgets')
-rw-r--r--doc/src/widgets/modelview.qdoc4
-rw-r--r--doc/src/widgets/widgets-and-layouts/gallery.qdoc2
-rw-r--r--doc/src/widgets/widgets-and-layouts/layout.qdoc4
-rw-r--r--doc/src/widgets/widgets-and-layouts/stylesheet.qdoc2
4 files changed, 6 insertions, 6 deletions
diff --git a/doc/src/widgets/modelview.qdoc b/doc/src/widgets/modelview.qdoc
index 9cbba47b60..5ac15b9f39 100644
--- a/doc/src/widgets/modelview.qdoc
+++ b/doc/src/widgets/modelview.qdoc
@@ -56,7 +56,7 @@
\list
\o The difference between standard and model/view widgets
- \o Adapters betweeen forms and models
+ \o Adapters between forms and models
\o Developing a simple model/view application
\o Predefined models
\o Intermediate topics such as:
@@ -475,7 +475,7 @@
The selection model (as shown above) can be retrieved, but it can also be
set with \l{QAbstractItemView}{QAbstractItemView::setSelectionModel}. This
- is how it's possible to have 3 view classes with synchronised selections
+ is how it's possible to have 3 view classes with synchronized selections
because only one instance of a selection model is used. To share a selection
model between 3 views use \l{QAbstractItemView::}{selectionModel()} and
assign the result to the second and third view class with
diff --git a/doc/src/widgets/widgets-and-layouts/gallery.qdoc b/doc/src/widgets/widgets-and-layouts/gallery.qdoc
index eb27ec97db..865321d4ad 100644
--- a/doc/src/widgets/widgets-and-layouts/gallery.qdoc
+++ b/doc/src/widgets/widgets-and-layouts/gallery.qdoc
@@ -31,7 +31,7 @@
\brief Qt widgets shown in different styles on various platforms.
Qt's support for widget styles and themes enables your application to fit in
- with the native desktop enviroment. Below, you can find links to the various
+ with the native desktop environment. Below, you can find links to the various
widget styles that are supplied with Qt 4.
\table
diff --git a/doc/src/widgets/widgets-and-layouts/layout.qdoc b/doc/src/widgets/widgets-and-layouts/layout.qdoc
index 3db58c21f9..394d537293 100644
--- a/doc/src/widgets/widgets-and-layouts/layout.qdoc
+++ b/doc/src/widgets/widgets-and-layouts/layout.qdoc
@@ -192,12 +192,12 @@
\o Any widgets that are allocated less space than their minimum size
(or minimum size hint if no minimum size is specified) are
allocated this minimum size they require. (Widgets don't have to
- have a minimum size or minimum size hint in which case the strech
+ have a minimum size or minimum size hint in which case the stretch
factor is their determining factor.)
\o Any widgets that are allocated more space than their maximum size
are allocated the maximum size space they require. (Widgets do not
- have to have a maximum size in which case the strech factor is
+ have to have a maximum size in which case the stretch factor is
their determining factor.)
\endlist
diff --git a/doc/src/widgets/widgets-and-layouts/stylesheet.qdoc b/doc/src/widgets/widgets-and-layouts/stylesheet.qdoc
index 80376b40a1..8375587ce8 100644
--- a/doc/src/widgets/widgets-and-layouts/stylesheet.qdoc
+++ b/doc/src/widgets/widgets-and-layouts/stylesheet.qdoc
@@ -3542,7 +3542,7 @@
\section2 Customizing QCheckBox
- Styling of a QCheckBox is almost indentical to styling a QRadioButton. The
+ Styling of a QCheckBox is almost identical to styling a QRadioButton. The
main difference is that a tristate QCheckBox has an indeterminate state.
\snippet doc/src/snippets/code/doc_src_stylesheet.qdoc 108