MCPcopy Create free account
hub / github.com/SpartanJ/eepp / getFirstWidget

Method getFirstWidget

src/eepp/scene/node.cpp:1747–1756  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1745}
1746
1747Node* Node::getFirstWidget() const {
1748 Node* child = mChild;
1749 while ( NULL != child ) {
1750 if ( child->isWidget() ) {
1751 return child;
1752 }
1753 child = child->getNextNode();
1754 }
1755 return NULL;
1756}
1757
1758Node* Node::getParentWidget() const {
1759 Node* parentNode = mParentNode;

Callers 5

initMethod · 0.45
downloadFileWebDialogMethod · 0.45
maximizeTabWidgetMethod · 0.45
panelPositionMethod · 0.45
saveNodeMethod · 0.45

Calls 2

isWidgetMethod · 0.80
getNextNodeMethod · 0.80

Tested by

no test coverage detected