summaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/barstest/custominputhandler.cpp2
-rw-r--r--tests/manual/itemmodeltest/main.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/manual/barstest/custominputhandler.cpp b/tests/manual/barstest/custominputhandler.cpp
index 3e61f904..e6fe9aa5 100644
--- a/tests/manual/barstest/custominputhandler.cpp
+++ b/tests/manual/barstest/custominputhandler.cpp
@@ -39,7 +39,7 @@ CustomInputHandler::CustomInputHandler(QObject *parent) :
//! [0]
void CustomInputHandler::mouseMoveEvent(QMouseEvent *event, const QPoint &mousePos)
{
- Q_UNUSED(event)
+ Q_UNUSED(event);
setInputPosition(mousePos);
}
//! [0]
diff --git a/tests/manual/itemmodeltest/main.cpp b/tests/manual/itemmodeltest/main.cpp
index 6cb97fc8..90a2e74e 100644
--- a/tests/manual/itemmodeltest/main.cpp
+++ b/tests/manual/itemmodeltest/main.cpp
@@ -216,8 +216,8 @@ void GraphDataGenerator::selectFromTable(const QPoint &selection)
void GraphDataGenerator::selectedFromTable(int currentRow, int currentColumn,
int previousRow, int previousColumn)
{
- Q_UNUSED(previousRow)
- Q_UNUSED(previousColumn)
+ Q_UNUSED(previousRow);
+ Q_UNUSED(previousColumn);
m_barGraph->seriesList().at(0)->setSelectedBar(QPoint(currentRow, currentColumn));
m_surfaceGraph->seriesList().at(0)->setSelectedPoint(QPoint(currentRow, currentColumn));
}