summaryrefslogtreecommitdiff
path: root/src/controls/SpinBox.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/SpinBox.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/SpinBox.qml')
-rw-r--r--src/controls/SpinBox.qml6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/controls/SpinBox.qml b/src/controls/SpinBox.qml
index c6a6c8e4..2e7abf1c 100644
--- a/src/controls/SpinBox.qml
+++ b/src/controls/SpinBox.qml
@@ -131,7 +131,6 @@ Control {
*/
property bool activeFocusOnPress: true
- /*! \internal */
style: Qt.createComponent(Settings.THEME_PATH + "/SpinBoxStyle.qml", spinbox)
/*! \internal */
@@ -191,19 +190,14 @@ Control {
visible: false
}
- /*! \internal */
onDecimalsChanged: input.setValue(value)
- /*! \internal */
onMaximumValueChanged: input.setValue(value)
- /*! \internal */
onMinimumValueChanged: input.setValue(value)
- /*! \internal */
Component.onCompleted: {
__initialized = true;
input.setValue(value)
}
- /*! \internal */
onValueChanged: if (__initialized) input.setValue(value)
activeFocusOnTab: true