forked from teamnwah/openmw-tes3coop
12 lines
258 B
C++
12 lines
258 B
C++
|
#include "masterproxymodel.hpp"
|
||
|
|
||
|
MasterProxyModel::MasterProxyModel(QObject *parent) :
|
||
|
QSortFilterProxyModel(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
QVariant MasterProxyModel::data(const QModelIndex &index, int role) const
|
||
|
{
|
||
|
return QSortFilterProxyModel::data (index, role);
|
||
|
}
|