mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 09:49:55 +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;
|
||
|
}
|