99 while (previousChild->
next() != NULL)
101 previousChild = previousChild->
next();
104 previousChild->
_next(child);
123 std::vector<Widget*> childWidgets;
126 while (child != NULL)
128 childWidgets.push_back(child);
129 child = child->
next();
163 for (
auto function =
listeners[name].begin();
function !=
listeners[name].end();
function++)