| 583 | if(contents.size() > 0) { |
| 584 | int nCount = 0; |
| 585 | foreach(auto c, contents) { |
| 586 | if(!c) continue; |
| 587 | if(!(c->GetType() & GetFilter())) continue; |
| 588 | nCount++; |
| 589 | } |
| 590 | beginInsertRows(parentIndex, 0, nCount); |
| 591 | foreach(auto c, contents) { |
| 592 | if(!c) continue; |
nothing calls this directly
no test coverage detected