mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-04-02 01:36:41 +00:00
removed useless todo statments.
This commit is contained in:
parent
5671a4b8e2
commit
16292bf23e
1 changed files with 7 additions and 9 deletions
|
@ -73,10 +73,10 @@ namespace CSMWorld
|
||||||
///< Add a new record (modified)
|
///< Add a new record (modified)
|
||||||
|
|
||||||
virtual int getSize() const;
|
virtual int getSize() const;
|
||||||
|
|
||||||
virtual int getNestedColumnsCount(int column) const;
|
|
||||||
|
|
||||||
virtual int getNestedRowsCount(int row, int column) const;
|
virtual int getNestedColumnsCount(int column) const;
|
||||||
|
|
||||||
|
virtual int getNestedRowsCount(int row, int column) const;
|
||||||
|
|
||||||
virtual std::string getId (int index) const;
|
virtual std::string getId (int index) const;
|
||||||
|
|
||||||
|
@ -253,19 +253,17 @@ namespace CSMWorld
|
||||||
{
|
{
|
||||||
return mRecords.size();
|
return mRecords.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename ESXRecordT, typename IdAccessorT>
|
template<typename ESXRecordT, typename IdAccessorT>
|
||||||
int Collection<ESXRecordT, IdAccessorT>::getNestedRowsCount(int row, int column) const
|
int Collection<ESXRecordT, IdAccessorT>::getNestedRowsCount(int row, int column) const
|
||||||
{
|
{
|
||||||
//TODO
|
return 0;
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename ESXRecordT, typename IdAccessorT>
|
template<typename ESXRecordT, typename IdAccessorT>
|
||||||
int Collection<ESXRecordT, IdAccessorT>::getNestedColumnsCount(int column) const
|
int Collection<ESXRecordT, IdAccessorT>::getNestedColumnsCount(int column) const
|
||||||
{
|
{
|
||||||
//TODO
|
return 0;
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename ESXRecordT, typename IdAccessorT>
|
template<typename ESXRecordT, typename IdAccessorT>
|
||||||
|
@ -300,7 +298,7 @@ namespace CSMWorld
|
||||||
template<typename ESXRecordT, typename IdAccessorT>
|
template<typename ESXRecordT, typename IdAccessorT>
|
||||||
QVariant Collection<ESXRecordT, IdAccessorT>::getNestedData(int row, int column, int subRow, int subColumn) const
|
QVariant Collection<ESXRecordT, IdAccessorT>::getNestedData(int row, int column, int subRow, int subColumn) const
|
||||||
{
|
{
|
||||||
return 10; //TODO
|
return QVariant();
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename ESXRecordT, typename IdAccessorT>
|
template<typename ESXRecordT, typename IdAccessorT>
|
||||||
|
|
Loading…
Reference in a new issue