| 707 | } |
| 708 | |
| 709 | Object *GuiControlType::GetPrototype(GuiControls aType) |
| 710 | { |
| 711 | ASSERT(aType <= _countof(sPrototypes)); |
| 712 | if (aType == GUI_CONTROL_TAB2 || aType == GUI_CONTROL_TAB3) |
| 713 | aType = GUI_CONTROL_TAB; // Just make them all Gui.Tab. |
| 714 | return sPrototypes[aType]; |
| 715 | } |
| 716 | |
| 717 | ResultType GuiControlType::Invoke(IObject_Invoke_PARAMS_DECL) |
| 718 | { |
nothing calls this directly
no outgoing calls
no test coverage detected