aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/qquickbusyindicator_p.h
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-10-30 11:36:14 +0100
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-11-02 09:29:48 +0000
commit304cf22b96092df1953faf584c2822e958ca40c1 (patch)
treeb80418c8e4951b7c812c9d0a66cadbebb1085834 /src/templates/qquickbusyindicator_p.h
parenta4337a3bc7cc97fc9d707611dda99d512ef83ac0 (diff)
Remove BusyIndicator::indicator
The indicator -property became redundant when contentItem was promoted to the Control base type. The content item is automatically resized to the available size, so it's even more convenient to use. Change-Id: I92435e1105171e45838ef1f49f653ad0f8d3152a Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
Diffstat (limited to 'src/templates/qquickbusyindicator_p.h')
-rw-r--r--src/templates/qquickbusyindicator_p.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/templates/qquickbusyindicator_p.h b/src/templates/qquickbusyindicator_p.h
index 79fd5f74..0a5defbc 100644
--- a/src/templates/qquickbusyindicator_p.h
+++ b/src/templates/qquickbusyindicator_p.h
@@ -58,7 +58,6 @@ class Q_LABSTEMPLATES_EXPORT QQuickBusyIndicator : public QQuickControl
{
Q_OBJECT
Q_PROPERTY(bool running READ isRunning WRITE setRunning NOTIFY runningChanged FINAL)
- Q_PROPERTY(QQuickItem *indicator READ indicator WRITE setIndicator NOTIFY indicatorChanged FINAL)
public:
explicit QQuickBusyIndicator(QQuickItem *parent = Q_NULLPTR);
@@ -66,12 +65,8 @@ public:
bool isRunning() const;
void setRunning(bool running);
- QQuickItem *indicator() const;
- void setIndicator(QQuickItem *indicator);
-
Q_SIGNALS:
void runningChanged();
- void indicatorChanged();
protected:
#ifndef QT_NO_ACCESSIBILITY