mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 00:39:59 +00:00
18 lines
441 B
C++
18 lines
441 B
C++
#include "pluginsproxymodel.hpp"
|
|
|
|
PluginsProxyModel::PluginsProxyModel(QObject *parent) :
|
|
QSortFilterProxyModel(parent)
|
|
{
|
|
}
|
|
|
|
PluginsProxyModel::~PluginsProxyModel()
|
|
{
|
|
}
|
|
|
|
QVariant PluginsProxyModel::headerData(int section, Qt::Orientation orientation, int role) const
|
|
{
|
|
if (orientation != Qt::Vertical || role != Qt::DisplayRole)
|
|
return QSortFilterProxyModel::headerData(section, orientation, role);
|
|
return section + 1;
|
|
}
|