| 150 | } |
| 151 | |
| 152 | fuiRenderNode* fuiRenderNode::getNodeFromPath(const char* path) { |
| 153 | bool diff = strcmp(this->m_path, path) == 0 || strcmp(path, DEFAULT_PATH) == 0; |
| 154 | return diff ? this : nullptr; |
| 155 | } |
| 156 | |
| 157 | fuiRenderNode* fuiRenderNode::findNode(const char* name) { |
| 158 | if (strlen(name)) |
nothing calls this directly
no outgoing calls
no test coverage detected