1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 15:39:02 +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.

17 lines
446 B
C++
Raw Normal View History

2017-10-02 19:56:22 +00:00
#include "landtexturetableproxymodel.hpp"
2022-10-19 17:02:00 +00:00
#include <apps/opencs/model/world/idtableproxymodel.hpp>
2017-10-02 19:56:22 +00:00
namespace CSMWorld
{
LandTextureTableProxyModel::LandTextureTableProxyModel(QObject* parent)
: IdTableProxyModel(parent)
{
}
bool LandTextureTableProxyModel::filterAcceptsRow(int sourceRow, const QModelIndex& sourceParent) const
{
return IdTableProxyModel::filterAcceptsRow(sourceRow, sourceParent);
}
}