summaryrefslogtreecommitdiffstats
path: root/tests/manual/boxplottester/customtablemodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/boxplottester/customtablemodel.cpp')
-rw-r--r--tests/manual/boxplottester/customtablemodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manual/boxplottester/customtablemodel.cpp b/tests/manual/boxplottester/customtablemodel.cpp
index 6d21f5b0..f74335c2 100644
--- a/tests/manual/boxplottester/customtablemodel.cpp
+++ b/tests/manual/boxplottester/customtablemodel.cpp
@@ -96,13 +96,13 @@ CustomTableModel::~CustomTableModel()
int CustomTableModel::rowCount(const QModelIndex &parent) const
{
- Q_UNUSED(parent)
+ Q_UNUSED(parent);
return m_rowCount;
}
int CustomTableModel::columnCount(const QModelIndex &parent) const
{
- Q_UNUSED(parent)
+ Q_UNUSED(parent);
return m_data.count();
}