summaryrefslogtreecommitdiffstats
path: root/src/datavisualization/data/qbardataitem.cpp
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2017-04-21 11:08:17 +0200
committerLiang Qi <liang.qi@qt.io>2017-04-21 11:12:27 +0200
commite7b022ec334ce6768c30402c1e17fe0a1e3a0bb0 (patch)
tree72641f2dc53522ca1959ac8c1d06692303c3a17b /src/datavisualization/data/qbardataitem.cpp
parent5adf257bebf2df7f54b92fb724cd547dc58a1163 (diff)
parent73ec35fa12a4b150670ea93d3021ca8e658063e1 (diff)
Merge remote-tracking branch 'origin/5.9' into dev
Conflicts: .qmake.conf Change-Id: Ibb41c2bb83df7e02696e27afe62e94ed059284ae
Diffstat (limited to 'src/datavisualization/data/qbardataitem.cpp')
-rw-r--r--src/datavisualization/data/qbardataitem.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/datavisualization/data/qbardataitem.cpp b/src/datavisualization/data/qbardataitem.cpp
index a5f13fb2..5827cf42 100644
--- a/src/datavisualization/data/qbardataitem.cpp
+++ b/src/datavisualization/data/qbardataitem.cpp
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2016 The Qt Company Ltd.
+** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Data Visualization module of the Qt Toolkit.
@@ -37,14 +37,14 @@ QT_BEGIN_NAMESPACE_DATAVISUALIZATION
* \brief The QBarDataItem class provides a container for resolved data to be added to bar graphs.
* \since QtDataVisualization 1.0
*
- * A QBarDataItem holds data for a single rendered bar in a graph.
- * Bar data proxies parse data into QBarDataItem instances for visualizing.
+ * A bar data item holds the data for a single rendered bar in a graph.
+ * Bar data proxies parse data into QBarDataItem instances for visualization.
*
* \sa QBarDataProxy, {Qt Data Visualization C++ Classes}
*/
/*!
- * Constructs QBarDataItem.
+ * Constructs a bar data item.
*/
QBarDataItem::QBarDataItem()
: d_ptr(0), // private data doesn't exist by default (optimization)
@@ -54,7 +54,7 @@ QBarDataItem::QBarDataItem()
}
/*!
- * Constructs QBarDataItem with \a value.
+ * Constructs a bar data item with the value \a value.
*/
QBarDataItem::QBarDataItem(float value)
: d_ptr(0),
@@ -64,7 +64,7 @@ QBarDataItem::QBarDataItem(float value)
}
/*!
- * Constructs QBarDataItem with \a value and \a angle
+ * Constructs a bar data item with the value \a value and angle \a angle.
*/
QBarDataItem::QBarDataItem(float value, float angle)
: d_ptr(0),
@@ -82,7 +82,7 @@ QBarDataItem::QBarDataItem(const QBarDataItem &other)
}
/*!
- * Destroys QBarDataItem.
+ * Deletes a bar data item.
*/
QBarDataItem::~QBarDataItem()
{
@@ -105,22 +105,22 @@ QBarDataItem &QBarDataItem::operator=(const QBarDataItem &other)
/*!
* \fn void QBarDataItem::setValue(float val)
- * Sets value \a val to this data item.
+ * Sets the value \a val to this data item.
*/
/*!
* \fn float QBarDataItem::value() const
- * \return value of this data item.
+ * Returns the value of this data item.
*/
/*!
* \fn void QBarDataItem::setRotation(float angle)
- * Sets rotation \a angle in degrees for this data item.
+ * Sets the rotation angle \a angle in degrees for this data item.
*/
/*!
* \fn float QBarDataItem::rotation() const
- * \return rotation angle in degrees for this data item.
+ * Returns the rotation angle in degrees for this data item.
*/
/*!