summaryrefslogtreecommitdiffstats
path: root/examples/widgets/doc/src/customsortfiltermodel.qdoc
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2017-11-30 12:57:22 +0000
committerThe Qt Project <gerrit-noreply@qt-project.org>2017-11-30 12:57:22 +0000
commitc35342ffeba10deecb2d8c0ce30a3a1a4ec1ee8d (patch)
tree0b7782b3d8973d20ee4db36f768367b94e3d3394 /examples/widgets/doc/src/customsortfiltermodel.qdoc
parent7200572b393534a2f503b810180276d2ae809c7a (diff)
parent87204c856ae3d8495c41af998ac196a12fe1c779 (diff)
Merge "Merge remote-tracking branch 'origin/5.10' into dev" into refs/staging/dev
Diffstat (limited to 'examples/widgets/doc/src/customsortfiltermodel.qdoc')
-rw-r--r--examples/widgets/doc/src/customsortfiltermodel.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/widgets/doc/src/customsortfiltermodel.qdoc b/examples/widgets/doc/src/customsortfiltermodel.qdoc
index 0eb6560e10..6eab846e89 100644
--- a/examples/widgets/doc/src/customsortfiltermodel.qdoc
+++ b/examples/widgets/doc/src/customsortfiltermodel.qdoc
@@ -75,7 +75,7 @@
QSortFilterProxyModel's default implementations of functions are
written so that they call the equivalent functions in the relevant
source model. This simple proxying mechanism may need to be
- overridden for source models with more complex behavior; in this
+ overridden for source models with more complex behavior. In this
example we derive from the QSortFilterProxyModel class to ensure
that our filter can recognize a valid range of dates, and to
control the sorting behavior.
@@ -170,7 +170,7 @@
We implement two private slots, \c textFilterChanged() and \c
dateFilterChanged(), to respond to the user changing the filter
- pattern, case sensitivity or any of the dates. In addition, we
+ pattern, case sensitivity, or any of the dates. In addition, we
implement a public \c setSourceModel() convenience function to set
up the model/ view relation.
@@ -197,7 +197,7 @@
\snippet itemviews/customsortfiltermodel/window.cpp 1
The QTreeView class provides a default model/view implementation
- of a tree view; our view implements a tree representation of items
+ of a tree view. Our view implements a tree representation of items
in the application's source model.
\snippet itemviews/customsortfiltermodel/window.cpp 2