summaryrefslogtreecommitdiffstats
path: root/tests/manual/candlesticktester/customtablemodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/candlesticktester/customtablemodel.cpp')
-rw-r--r--tests/manual/candlesticktester/customtablemodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manual/candlesticktester/customtablemodel.cpp b/tests/manual/candlesticktester/customtablemodel.cpp
index ae995b22..0466e39c 100644
--- a/tests/manual/candlesticktester/customtablemodel.cpp
+++ b/tests/manual/candlesticktester/customtablemodel.cpp
@@ -50,14 +50,14 @@ CustomTableModel::~CustomTableModel()
int CustomTableModel::rowCount(const QModelIndex &parent) const
{
- Q_UNUSED(parent)
+ Q_UNUSED(parent);
return m_data.count();
}
int CustomTableModel::columnCount(const QModelIndex &parent) const
{
- Q_UNUSED(parent)
+ Q_UNUSED(parent);
return m_categories.count();
}