mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Silence warnings in downloadfromdivecomputer.cpp
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
234a659498
commit
8d19a6ae16
1 changed files with 2 additions and 0 deletions
|
@ -626,11 +626,13 @@ DiveImportedModel::DiveImportedModel(QObject *o) : QAbstractTableModel(o),
|
||||||
|
|
||||||
int DiveImportedModel::columnCount(const QModelIndex &model) const
|
int DiveImportedModel::columnCount(const QModelIndex &model) const
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(model)
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
int DiveImportedModel::rowCount(const QModelIndex &model) const
|
int DiveImportedModel::rowCount(const QModelIndex &model) const
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(model)
|
||||||
return lastIndex - firstIndex + 1;
|
return lastIndex - firstIndex + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue