| 95 | } |
| 96 | |
| 97 | CUIEditBoxEx* CScriptXmlInit::InitEditBoxEx(LPCSTR path, CUIWindow* parent) |
| 98 | { |
| 99 | CUIEditBoxEx* pWnd = xr_new<CUIEditBoxEx>(); |
| 100 | CUIXmlInit::InitEditBoxEx(m_xml, path, 0, pWnd); |
| 101 | pWnd->SetAutoDelete(true); |
| 102 | _attach_child(pWnd, parent); |
| 103 | //. if(parent) parent->AttachChild(pWnd); |
| 104 | return pWnd; |
| 105 | } |
| 106 | |
| 107 | CUIStatic* CScriptXmlInit::InitStatic(LPCSTR path, CUIWindow* parent) |
| 108 | { |
nothing calls this directly
no test coverage detected