Fix unused variable warnings.

svn path=/trunk/KDE/kdebase/apps/konsole/; revision=801162
This commit is contained in:
Robert Knight
2008-04-25 20:20:09 +00:00
parent 1222b0e15b
commit 0353940144

View File

@@ -765,15 +765,15 @@ QVariant SessionListModel::headerData(int section, Qt::Orientation orientation,
}
}
int SessionListModel::columnCount(const QModelIndex& parent) const
int SessionListModel::columnCount(const QModelIndex&) const
{
return 2;
}
int SessionListModel::rowCount(const QModelIndex& parent) const
int SessionListModel::rowCount(const QModelIndex&) const
{
return _sessions.count();
}
QModelIndex SessionListModel::parent(const QModelIndex& index) const
QModelIndex SessionListModel::parent(const QModelIndex&) const
{
return QModelIndex();
}