mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 09:19:58 +00:00
17 lines
441 B
C++
17 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;
|
|
}
|