mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-19 20:53:52 +00:00
16 lines
446 B
C++
16 lines
446 B
C++
#include "landtexturetableproxymodel.hpp"
|
|
|
|
#include <apps/opencs/model/world/idtableproxymodel.hpp>
|
|
|
|
namespace CSMWorld
|
|
{
|
|
LandTextureTableProxyModel::LandTextureTableProxyModel(QObject* parent)
|
|
: IdTableProxyModel(parent)
|
|
{
|
|
}
|
|
|
|
bool LandTextureTableProxyModel::filterAcceptsRow(int sourceRow, const QModelIndex& sourceParent) const
|
|
{
|
|
return IdTableProxyModel::filterAcceptsRow(sourceRow, sourceParent);
|
|
}
|
|
}
|