summaryrefslogtreecommitdiffstats
path: root/src/datavisualization/engine/surface3dcontroller.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/datavisualization/engine/surface3dcontroller.cpp')
-rw-r--r--src/datavisualization/engine/surface3dcontroller.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/datavisualization/engine/surface3dcontroller.cpp b/src/datavisualization/engine/surface3dcontroller.cpp
index 1a140a5c..ba845ac1 100644
--- a/src/datavisualization/engine/surface3dcontroller.cpp
+++ b/src/datavisualization/engine/surface3dcontroller.cpp
@@ -112,8 +112,8 @@ void Surface3DController::synchDataToRenderer()
void Surface3DController::handleAxisAutoAdjustRangeChangedInOrientation(
QAbstract3DAxis::AxisOrientation orientation, bool autoAdjust)
{
- Q_UNUSED(orientation)
- Q_UNUSED(autoAdjust)
+ Q_UNUSED(orientation);
+ Q_UNUSED(autoAdjust);
adjustAxisRanges();
}
@@ -416,8 +416,8 @@ void Surface3DController::handleItemChanged(int rowIndex, int columnIndex)
void Surface3DController::handleRowsAdded(int startIndex, int count)
{
- Q_UNUSED(startIndex)
- Q_UNUSED(count)
+ Q_UNUSED(startIndex);
+ Q_UNUSED(count);
QSurface3DSeries *series = static_cast<QSurfaceDataProxy *>(sender())->series();
if (series->isVisible()) {
adjustAxisRanges();
@@ -430,8 +430,8 @@ void Surface3DController::handleRowsAdded(int startIndex, int count)
void Surface3DController::handleRowsInserted(int startIndex, int count)
{
- Q_UNUSED(startIndex)
- Q_UNUSED(count)
+ Q_UNUSED(startIndex);
+ Q_UNUSED(count);
QSurface3DSeries *series = static_cast<QSurfaceDataProxy *>(sender())->series();
if (series == m_selectedSeries) {
// If rows inserted to selected series before the selection, adjust the selection
@@ -454,8 +454,8 @@ void Surface3DController::handleRowsInserted(int startIndex, int count)
void Surface3DController::handleRowsRemoved(int startIndex, int count)
{
- Q_UNUSED(startIndex)
- Q_UNUSED(count)
+ Q_UNUSED(startIndex);
+ Q_UNUSED(count);
QSurface3DSeries *series = static_cast<QSurfaceDataProxy *>(sender())->series();
if (series == m_selectedSeries) {
// If rows removed from selected series before the selection, adjust the selection