summaryrefslogtreecommitdiff
path: root/src/controls/CheckBox.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@digia.com>2013-04-08 12:00:28 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-08 12:44:31 +0200
commit86874eaaf4a6bee0001491490ead790862e48fce (patch)
tree0ebe82bd7ed3c69d71ba50eac30fab8090242dc3 /src/controls/CheckBox.qml
parentcec78cc680c4d7c78aee76e9bc05204713e17d12 (diff)
downloadqtquickcontrols-86874eaaf4a6bee0001491490ead790862e48fce.tar.gz
Cleanup the superfluous \internal tags that are no longer needed
Change-Id: I2eaaf7e82351e70a742eeadc32b8e1f8655a02c1 Reviewed-by: Caroline Chao <caroline.chao@digia.com>
Diffstat (limited to 'src/controls/CheckBox.qml')
-rw-r--r--src/controls/CheckBox.qml4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/controls/CheckBox.qml b/src/controls/CheckBox.qml
index 0f5098b5..7f03573e 100644
--- a/src/controls/CheckBox.qml
+++ b/src/controls/CheckBox.qml
@@ -139,13 +139,11 @@ AbstractCheckable {
__cycleStatesHandler: __cycleCheckBoxStates
- /*! \internal */
onCheckedChanged: {
if (!__ignoreChecked)
checkedState = checked ? Qt.Checked : Qt.Unchecked;
}
- /*! \internal */
onCheckedStateChanged: {
__ignoreChecked = true;
if (checkedState === Qt.PartiallyChecked) {
@@ -157,14 +155,12 @@ AbstractCheckable {
__ignoreChecked = false;
}
- /*! \internal */
onPartiallyCheckedEnabledChanged: {
if (exclusiveGroup && partiallyCheckedEnabled) {
console.warn("Cannot have partially checked boxes in an ExclusiveGroup.");
}
}
- /*! \internal */
onExclusiveGroupChanged: {
if (exclusiveGroup && partiallyCheckedEnabled) {
console.warn("Cannot have partially checked boxes in an ExclusiveGroup.");