| 896 | { return false; } |
| 897 | |
| 898 | bool NodeBase::isBodyShown() const |
| 899 | { |
| 900 | if (v_data[PropertyIds::Folded]) |
| 901 | return false; |
| 902 | |
| 903 | if (auto p = getParentNode()) |
| 904 | { |
| 905 | return p->isBodyShown(); |
| 906 | } |
| 907 | |
| 908 | return true; |
| 909 | } |
| 910 | |
| 911 | HelpManager& NodeBase::getHelpManager() |
| 912 | { return helpManager; } |
no outgoing calls
no test coverage detected