| 243 | } |
| 244 | |
| 245 | bool remove(Rbl* blob) |
| 246 | { |
| 247 | const Item item(blob); |
| 248 | |
| 249 | if (m_tree.isPositioned(item) || m_tree.locate(item)) |
| 250 | { |
| 251 | m_tree.fastRemove(); |
| 252 | return true; |
| 253 | } |
| 254 | |
| 255 | return false; |
| 256 | } |
| 257 | |
| 258 | void clear() |
| 259 | { |
nothing calls this directly
no test coverage detected