1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-22 09:53:54 +00:00
openmw/apps/opencs/model/world/landtexturetableproxymodel.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
388 B
C++
Raw Normal View History

2017-10-02 19:56:22 +00:00
#include "landtexturetableproxymodel.hpp"
namespace CSMWorld
{
LandTextureTableProxyModel::LandTextureTableProxyModel(QObject* parent)
: IdTableProxyModel(parent)
{
}
bool LandTextureTableProxyModel::filterAcceptsRow(int sourceRow, const QModelIndex& sourceParent) const
{
return IdTableProxyModel::filterAcceptsRow(sourceRow, sourceParent);
}
}