summaryrefslogtreecommitdiffstats
path: root/src/charts/barchart/qbarmodelmapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/charts/barchart/qbarmodelmapper.cpp')
-rw-r--r--src/charts/barchart/qbarmodelmapper.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/charts/barchart/qbarmodelmapper.cpp b/src/charts/barchart/qbarmodelmapper.cpp
index 94ebda0e..2303d325 100644
--- a/src/charts/barchart/qbarmodelmapper.cpp
+++ b/src/charts/barchart/qbarmodelmapper.cpp
@@ -272,8 +272,8 @@ void QBarModelMapperPrivate::handleSeriesDestroyed()
void QBarModelMapperPrivate::modelUpdated(QModelIndex topLeft, QModelIndex bottomRight)
{
- Q_UNUSED(topLeft)
- Q_UNUSED(bottomRight)
+ Q_UNUSED(topLeft);
+ Q_UNUSED(bottomRight);
if (m_model == 0 || m_series == 0)
return;
@@ -321,7 +321,7 @@ void QBarModelMapperPrivate::modelHeaderDataUpdated(Qt::Orientation orientation,
void QBarModelMapperPrivate::modelRowsAdded(QModelIndex parent, int start, int end)
{
- Q_UNUSED(parent)
+ Q_UNUSED(parent);
if (m_modelSignalsBlock)
return;
@@ -335,7 +335,7 @@ void QBarModelMapperPrivate::modelRowsAdded(QModelIndex parent, int start, int e
void QBarModelMapperPrivate::modelRowsRemoved(QModelIndex parent, int start, int end)
{
- Q_UNUSED(parent)
+ Q_UNUSED(parent);
if (m_modelSignalsBlock)
return;
@@ -349,7 +349,7 @@ void QBarModelMapperPrivate::modelRowsRemoved(QModelIndex parent, int start, int
void QBarModelMapperPrivate::modelColumnsAdded(QModelIndex parent, int start, int end)
{
- Q_UNUSED(parent)
+ Q_UNUSED(parent);
if (m_modelSignalsBlock)
return;
@@ -363,7 +363,7 @@ void QBarModelMapperPrivate::modelColumnsAdded(QModelIndex parent, int start, in
void QBarModelMapperPrivate::modelColumnsRemoved(QModelIndex parent, int start, int end)
{
- Q_UNUSED(parent)
+ Q_UNUSED(parent);
if (m_modelSignalsBlock)
return;
@@ -382,9 +382,9 @@ void QBarModelMapperPrivate::handleModelDestroyed()
void QBarModelMapperPrivate::insertData(int start, int end)
{
- Q_UNUSED(end)
- Q_UNUSED(start)
- Q_UNUSED(end)
+ Q_UNUSED(end);
+ Q_UNUSED(start);
+ Q_UNUSED(end);
// Currently barchart needs to be fully recalculated when change is made.
// Re-initialize
initializeBarFromModel();
@@ -392,9 +392,9 @@ void QBarModelMapperPrivate::insertData(int start, int end)
void QBarModelMapperPrivate::removeData(int start, int end)
{
- Q_UNUSED(end)
- Q_UNUSED(start)
- Q_UNUSED(end)
+ Q_UNUSED(end);
+ Q_UNUSED(start);
+ Q_UNUSED(end);
// Currently barchart needs to be fully recalculated when change is made.
// Re-initialize
initializeBarFromModel();