mirror of
https://github.com/KDE/konsole.git
synced 2026-05-04 12:44:23 -04:00
Fix unused variable warnings.
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=801162
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user