forked from teamnwah/openmw-tes3coop
11 lines
258 B
C++
11 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);
|
|
}
|