openmw-tes3coop/components/fileorderlist/masterproxymodel.cpp

12 lines
258 B
C++
Raw Normal View History

2013-08-17 02:12:30 +00:00
#include "masterproxymodel.hpp"
MasterProxyModel::MasterProxyModel(QObject *parent) :
QSortFilterProxyModel(parent)
{
}
QVariant MasterProxyModel::data(const QModelIndex &index, int role) const
{
return QSortFilterProxyModel::data (index, role);
}