aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/qquickprogressbar.cpp
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-09-30 17:47:36 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-10-01 09:03:42 +0000
commit3f2ac678971694fe6144a4e15197aff2ca38639b (patch)
tree06440cbf63932fb008f3aab29835b07d0310bada /src/templates/qquickprogressbar.cpp
parentb948c83255239a6fe49fca58a98f90e796ce9047 (diff)
Rename QtQuick.Controls 2.0 to Qt.labs.controls 1.0
Change-Id: I142622dd85e95ef70b11132e77ccf48701f2cabc Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
Diffstat (limited to 'src/templates/qquickprogressbar.cpp')
-rw-r--r--src/templates/qquickprogressbar.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/templates/qquickprogressbar.cpp b/src/templates/qquickprogressbar.cpp
index 5ce7894b..a0dc2779 100644
--- a/src/templates/qquickprogressbar.cpp
+++ b/src/templates/qquickprogressbar.cpp
@@ -43,16 +43,16 @@ QT_BEGIN_NAMESPACE
\qmltype ProgressBar
\inherits Control
\instantiates QQuickProgressBar
- \inqmlmodule QtQuick.Controls
+ \inqmlmodule Qt.labs.controls
\ingroup indicators
\brief A progress bar control.
ProgressBar indicates the progress of an operation.
\table
- \row \li \image qtquickcontrols2-progressbar-normal.png
+ \row \li \image qtlabscontrols-progressbar-normal.png
\li A progress bar in its normal state.
- \row \li \image qtquickcontrols2-progressbar-disabled.png
+ \row \li \image qtlabscontrols-progressbar-disabled.png
\li A progress bar that is disabled.
\endtable
@@ -84,7 +84,7 @@ QQuickProgressBar::QQuickProgressBar(QQuickItem *parent) :
}
/*!
- \qmlproperty real QtQuick.Controls::ProgressBar::from
+ \qmlproperty real Qt.labs.controls::ProgressBar::from
This property holds the starting value for the progress. The default value is \c 0.0.
@@ -110,7 +110,7 @@ void QQuickProgressBar::setFrom(qreal from)
}
/*!
- \qmlproperty real QtQuick.Controls::ProgressBar::to
+ \qmlproperty real Qt.labs.controls::ProgressBar::to
This property holds the end value for the progress. The default value is \c 1.0.
@@ -136,7 +136,7 @@ void QQuickProgressBar::setTo(qreal to)
}
/*!
- \qmlproperty real QtQuick.Controls::ProgressBar::value
+ \qmlproperty real Qt.labs.controls::ProgressBar::value
This property holds the progress value. The default value is \c 0.0.
@@ -163,7 +163,7 @@ void QQuickProgressBar::setValue(qreal value)
}
/*!
- \qmlproperty real QtQuick.Controls::ProgressBar::position
+ \qmlproperty real Qt.labs.controls::ProgressBar::position
\readonly
This property holds the logical position of the progress.
@@ -183,7 +183,7 @@ qreal QQuickProgressBar::position() const
}
/*!
- \qmlproperty real QtQuick.Controls::ProgressBar::visualPosition
+ \qmlproperty real Qt.labs.controls::ProgressBar::visualPosition
\readonly
This property holds the visual position of the progress.
@@ -203,7 +203,7 @@ qreal QQuickProgressBar::visualPosition() const
}
/*!
- \qmlproperty bool QtQuick.Controls::ProgressBar::indeterminate
+ \qmlproperty bool Qt.labs.controls::ProgressBar::indeterminate
This property holds whether the progress bar is in an indeterminate mode.
*/
@@ -223,7 +223,7 @@ void QQuickProgressBar::setIndeterminate(bool indeterminate)
}
/*!
- \qmlproperty Item QtQuick.Controls::ProgressBar::indicator
+ \qmlproperty Item Qt.labs.controls::ProgressBar::indicator
This property holds the indicator item.