| 64 | } |
| 65 | |
| 66 | bool PluginDataModel::GetRowForItem(const wxDataViewItem& item, uint32_t& row) const |
| 67 | { |
| 68 | if(item.IsOk()) |
| 69 | { |
| 70 | row = GetRowIndex(item); |
| 71 | return row < mIndexFilterMap.size(); |
| 72 | } |
| 73 | return false; |
| 74 | } |
| 75 | |
| 76 | uint32_t PluginDataModel::GetRowCount() const |
| 77 | { |
nothing calls this directly
no test coverage detected