| 239 | } |
| 240 | |
| 241 | void KDevelop::TreeItem::setExpanded(bool b) |
| 242 | { |
| 243 | if (expanded_ != b) { |
| 244 | expanded_ = b; |
| 245 | if (expanded_) emit expanded(); |
| 246 | else emit collapsed(); |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | #include "treeitem.moc" |
| 251 | #include "moc_treeitem.cpp" |
no outgoing calls
no test coverage detected