mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 19:19:55 +00:00
16 lines
413 B
C++
16 lines
413 B
C++
#include "landtexturetableproxymodel.hpp"
|
|
|
|
#include "idtable.hpp"
|
|
|
|
namespace CSMWorld
|
|
{
|
|
LandTextureTableProxyModel::LandTextureTableProxyModel(QObject* parent)
|
|
: IdTableProxyModel(parent)
|
|
{
|
|
}
|
|
|
|
bool LandTextureTableProxyModel::filterAcceptsRow (int sourceRow, const QModelIndex& sourceParent) const
|
|
{
|
|
return IdTableProxyModel::filterAcceptsRow(sourceRow, sourceParent);
|
|
}
|
|
}
|