| 52 | } |
| 53 | |
| 54 | int FilterModel::rowCount(const QModelIndex& parent) const |
| 55 | { |
| 56 | if (parent.isValid()) { |
| 57 | return 0; |
| 58 | } |
| 59 | return m_filters.size(); |
| 60 | } |
| 61 | |
| 62 | int FilterModel::columnCount(const QModelIndex& /*parent*/) const |
| 63 | { |
no test coverage detected