summaryrefslogtreecommitdiffstats
path: root/examples/charts/barmodelmapper/customtablemodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/charts/barmodelmapper/customtablemodel.cpp')
-rw-r--r--examples/charts/barmodelmapper/customtablemodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/charts/barmodelmapper/customtablemodel.cpp b/examples/charts/barmodelmapper/customtablemodel.cpp
index 37730042..c722f089 100644
--- a/examples/charts/barmodelmapper/customtablemodel.cpp
+++ b/examples/charts/barmodelmapper/customtablemodel.cpp
@@ -60,13 +60,13 @@ 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_columnCount;
}