aboutsummaryrefslogtreecommitdiffstats
path: root/src/controls/qquickcontainer_p.h
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-06-14 23:57:21 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-06-15 08:06:05 +0000
commit6ba8b6ef24fd8317e35ef7d228e9a5eefa26e81e (patch)
tree0c520a9e3b9afbbaca935a42eb20c4635729a7cf /src/controls/qquickcontainer_p.h
parentb793cbe460e311b3ed118b02635165db853696c4 (diff)
Remove obsolete Container::contentWidth & contentHeight
Change-Id: Ia0ed99904e2bcdcf15820da9ad8a7e1f07fc7e1e Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/controls/qquickcontainer_p.h')
-rw-r--r--src/controls/qquickcontainer_p.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/controls/qquickcontainer_p.h b/src/controls/qquickcontainer_p.h
index f42e4cee..a6f15b1e 100644
--- a/src/controls/qquickcontainer_p.h
+++ b/src/controls/qquickcontainer_p.h
@@ -57,25 +57,15 @@ class QQuickContainerPrivate;
class Q_QUICKCONTROLS_EXPORT QQuickContainer : public QQuickControl
{
Q_OBJECT
- Q_PROPERTY(qreal contentWidth READ contentWidth WRITE setContentWidth NOTIFY contentWidthChanged FINAL)
- Q_PROPERTY(qreal contentHeight READ contentHeight WRITE setContentHeight NOTIFY contentHeightChanged FINAL)
Q_PROPERTY(QQuickItem *contentItem READ contentItem WRITE setContentItem NOTIFY contentItemChanged FINAL)
public:
explicit QQuickContainer(QQuickItem *parent = Q_NULLPTR);
- qreal contentWidth() const;
- void setContentWidth(qreal width);
-
- qreal contentHeight() const;
- void setContentHeight(qreal height);
-
QQuickItem *contentItem() const;
void setContentItem(QQuickItem *item);
Q_SIGNALS:
- void contentWidthChanged();
- void contentHeightChanged();
void contentItemChanged();
protected: