| 97 | } |
| 98 | |
| 99 | bool ValueTableItem::removeChildren(int position) |
| 100 | { |
| 101 | if (position < 0 || position >= childItems.size()) |
| 102 | return false; |
| 103 | |
| 104 | delete childItems.takeAt(position); |
| 105 | |
| 106 | return true; |
| 107 | } |
| 108 | |
| 109 | bool ValueTableItem::removeItem(ValueTableItem *item) { |
| 110 | if(childItems.removeOne(item)) { |
nothing calls this directly
no outgoing calls
no test coverage detected