summaryrefslogtreecommitdiffstats
path: root/qt-models/weightsysteminfomodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt-models/weightsysteminfomodel.cpp')
-rw-r--r--qt-models/weightsysteminfomodel.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/qt-models/weightsysteminfomodel.cpp b/qt-models/weightsysteminfomodel.cpp
index 08fecec5d..14d268bcb 100644
--- a/qt-models/weightsysteminfomodel.cpp
+++ b/qt-models/weightsysteminfomodel.cpp
@@ -10,19 +10,17 @@ WSInfoModel *WSInfoModel::instance()
return &self;
}
-bool WSInfoModel::insertRows(int row, int count, const QModelIndex &parent)
+bool WSInfoModel::insertRows(int, int count, const QModelIndex &parent)
{
- Q_UNUSED(row);
beginInsertRows(parent, rowCount(), rowCount());
rows += count;
endInsertRows();
return true;
}
-bool WSInfoModel::setData(const QModelIndex &index, const QVariant &value, int role)
+bool WSInfoModel::setData(const QModelIndex &index, const QVariant &value, int)
{
//WARN: check for Qt::EditRole
- Q_UNUSED(role);
struct ws_info_t *info = &ws_info[index.row()];
switch (index.column()) {
case DESCRIPTION:
@@ -68,9 +66,8 @@ QVariant WSInfoModel::data(const QModelIndex &index, int role) const
return ret;
}
-int WSInfoModel::rowCount(const QModelIndex &parent) const
+int WSInfoModel::rowCount(const QModelIndex&) const
{
- Q_UNUSED(parent);
return rows + 1;
}