summaryrefslogtreecommitdiffstats
path: root/plugins/declarative/declarativeboxplotseries.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/declarative/declarativeboxplotseries.cpp')
-rw-r--r--plugins/declarative/declarativeboxplotseries.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/declarative/declarativeboxplotseries.cpp b/plugins/declarative/declarativeboxplotseries.cpp
index 64507efe..ffb45263 100644
--- a/plugins/declarative/declarativeboxplotseries.cpp
+++ b/plugins/declarative/declarativeboxplotseries.cpp
@@ -50,7 +50,7 @@ void DeclarativeBoxSet::setValues(QVariantList values)
// =====================================================
-DeclarativeBoxPlotSeries::DeclarativeBoxPlotSeries(QDeclarativeItem *parent) :
+DeclarativeBoxPlotSeries::DeclarativeBoxPlotSeries(QDECLARATIVE_ITEM *parent) :
QBoxPlotSeries(parent),
m_axes(new DeclarativeAxes(this))
{
@@ -78,12 +78,12 @@ void DeclarativeBoxPlotSeries::componentComplete()
}
}
-QDeclarativeListProperty<QObject> DeclarativeBoxPlotSeries::seriesChildren()
+QDECLARATIVE_LIST_PROPERTY<QObject> DeclarativeBoxPlotSeries::seriesChildren()
{
- return QDeclarativeListProperty<QObject>(this, 0, &DeclarativeBoxPlotSeries::appendSeriesChildren);
+ return QDECLARATIVE_LIST_PROPERTY<QObject>(this, 0, &DeclarativeBoxPlotSeries::appendSeriesChildren LIST_PROPERTY_PARAM_DEFAULTS);
}
-void DeclarativeBoxPlotSeries::appendSeriesChildren(QDeclarativeListProperty<QObject> *list, QObject *element)
+void DeclarativeBoxPlotSeries::appendSeriesChildren(QDECLARATIVE_LIST_PROPERTY<QObject> *list, QObject *element)
{
// Empty implementation; the children are parsed in componentComplete instead
Q_UNUSED(list);