summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@digia.com>2013-08-16 12:26:20 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-16 13:37:16 +0200
commite79cf774cecdde218795f5061bb3aaae4bc2123e (patch)
treef8192a78b0785725e9f56cf80de2c9f58670ca33
parentd5656fbc4f96ac176abb531a4c8997c57dcea9c9 (diff)
Fix a few things in ExclusiveGroup documentation.v5.1.1
Change-Id: I4feda741c7052e06f066c2ea69ba242a11b62b04 Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
-rw-r--r--src/controls/qquickexclusivegroup.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/controls/qquickexclusivegroup.cpp b/src/controls/qquickexclusivegroup.cpp
index f1b6935ef..a512bc34d 100644
--- a/src/controls/qquickexclusivegroup.cpp
+++ b/src/controls/qquickexclusivegroup.cpp
@@ -131,9 +131,9 @@ static bool isChecked(const QObject *o)
\section1 Adding support to ExclusiveGroup
- It is possible to add support for ExclusiveGroup for an object, or control. It should have a \c checked
+ It is possible to add support for ExclusiveGroup for an object or control. It should have a \c checked
property, and either a \c checkedChanged, \c toggled(), or \c toggled(bool) signal. It also needs
- to be bound with \l ExclusiveGroup::bindCheckable() when its ExclusiveGroup ty[ped property is set.
+ to be bound with \l ExclusiveGroup::bindCheckable() when its ExclusiveGroup typed property is set.
\code
Item {
@@ -149,7 +149,7 @@ static bool isChecked(const QObject *o)
}
\endcode
- The example above shows the minimum necessary to add ExclusiveGroup support to any item.
+ The example above shows the minimum code necessary to add ExclusiveGroup support to any item.
*/
/*!