| 88 | } |
| 89 | |
| 90 | bool ValueTableItem::insertChildren(int position, ValueTableItem * &item) |
| 91 | { |
| 92 | if (position < 0 || position > childItems.size()) |
| 93 | return false; |
| 94 | |
| 95 | childItems.insert(position, item); |
| 96 | return true; |
| 97 | } |
| 98 | |
| 99 | bool ValueTableItem::removeChildren(int position) |
| 100 | { |