diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-03-09 20:10:42 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-03-09 21:50:26 -0800 |
commit | 4e13322fa0cf7ef6dd4f320a9e08f22036f1840f (patch) | |
tree | ba7d4d0ed8c1b1153a15d2ad13519088e0d6b55e /desktop-widgets/statistics/statisticswidget.cpp | |
parent | 032de3549d5024c908f5ddd736bf569b4411313c (diff) | |
download | subsurface-4e13322fa0cf7ef6dd4f320a9e08f22036f1840f.tar.gz |
Clean up signedness confusion in statisticswidget.cpp
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/statistics/statisticswidget.cpp')
-rw-r--r-- | desktop-widgets/statistics/statisticswidget.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop-widgets/statistics/statisticswidget.cpp b/desktop-widgets/statistics/statisticswidget.cpp index 3e91fa317..d06f51a98 100644 --- a/desktop-widgets/statistics/statisticswidget.cpp +++ b/desktop-widgets/statistics/statisticswidget.cpp @@ -23,6 +23,9 @@ void YearlyStatisticsWidget::setModel(YearlyStatisticsModel *m) void YearlyStatisticsWidget::modelRowsInserted(const QModelIndex &index, int first, int last) { + Q_UNUSED(index) + Q_UNUSED(first) + Q_UNUSED(last) // stub } |