| 1446 | } |
| 1447 | |
| 1448 | int UBFeaturesModel::rowCount(const QModelIndex &parent) const |
| 1449 | { |
| 1450 | if (parent.isValid() || !featuresList) |
| 1451 | return 0; |
| 1452 | else |
| 1453 | return featuresList->size(); |
| 1454 | } |
| 1455 | |
| 1456 | bool UBFeaturesProxyModel::filterAcceptsRow( int sourceRow, const QModelIndex & sourceParent )const |
| 1457 | { |
no test coverage detected