MCPcopy Create free account
hub / github.com/MyGUI/mygui / getChildByIndex

Method getChildByIndex

Tools/EditorFramework/Data.cpp:126–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124 }
125
126 DataPtr Data::getChildByIndex(size_t _index)
127 {
128 MYGUI_ASSERT_RANGE_AND_NONE(_index, mChilds.size(), "Data::getChildSelected");
129
130 if (_index == MyGUI::ITEM_NONE)
131 return nullptr;
132 return mChilds[_index];
133 }
134
135 DataPtr Data::getChildSelected()
136 {

Callers 2

onChangeDataMethod · 0.80
getFirstFramePointMethod · 0.80

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected