| 53 | } |
| 54 | |
| 55 | bool TreeProxyFilter::hasAcceptedChildren(int sourceRow, const QModelIndex &sourceParent) const |
| 56 | { |
| 57 | QModelIndex item = sourceModel()->index(sourceRow, 0, sourceParent); |
| 58 | if (!item.isValid()) |
| 59 | { |
| 60 | return false; |
| 61 | } |
| 62 | return true; |
| 63 | } |
nothing calls this directly
no outgoing calls
no test coverage detected