| 2721 | return NO_CONTROL_INDEX; |
| 2722 | } |
| 2723 | GuiControlType *FindControl(HWND aHwnd) |
| 2724 | { |
| 2725 | GuiIndexType index = FindControlIndex(aHwnd); |
| 2726 | return index == NO_CONTROL_INDEX ? NULL : mControl[index]; |
| 2727 | } |
| 2728 | |
| 2729 | int FindGroup(GuiIndexType aControlIndex, GuiIndexType &aGroupStart, GuiIndexType &aGroupEnd); |
| 2730 |
nothing calls this directly
no outgoing calls
no test coverage detected