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

Method findItemWith

MyGUIEngine/src/MyGUI_TabControl.cpp:585–593  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

583 }
584
585 TabItem* TabControl::findItemWith(const UString& _name)
586 {
587 for (auto& info : mItemsInfo)
588 {
589 if (info.name == _name)
590 return info.item;
591 }
592 return nullptr;
593 }
594
595 TabItem* TabControl::getItemSelected() const
596 {

Calls

no outgoing calls

Tested by

no test coverage detected