| 175 | } |
| 176 | |
| 177 | CUIComboBox* CScriptXmlInit::InitComboBox(LPCSTR path, CUIWindow* parent) |
| 178 | { |
| 179 | CUIComboBox* pWnd = xr_new<CUIComboBox>(); |
| 180 | CUIXmlInit::InitComboBox(m_xml, path, 0, pWnd); |
| 181 | pWnd->SetAutoDelete(true); |
| 182 | _attach_child(pWnd, parent); |
| 183 | //. if(parent) parent->AttachChild(pWnd); |
| 184 | return pWnd; |
| 185 | } |
| 186 | |
| 187 | CUIButton* CScriptXmlInit::InitButton(LPCSTR path, CUIWindow* parent) |
| 188 | { |
nothing calls this directly
no test coverage detected