| 61 | } |
| 62 | |
| 63 | void TreeControl::Node::setExpanded(bool bIsExpanded) |
| 64 | { |
| 65 | if (mbIsExpanded == bIsExpanded) |
| 66 | return; |
| 67 | |
| 68 | mbIsExpanded = bIsExpanded; |
| 69 | |
| 70 | invalidate(); |
| 71 | } |
| 72 | |
| 73 | void TreeControl::Node::setImage(const UString& strImage) |
| 74 | { |
no outgoing calls
no test coverage detected