| 105 | } |
| 106 | |
| 107 | CUIStatic* CScriptXmlInit::InitStatic(LPCSTR path, CUIWindow* parent) |
| 108 | { |
| 109 | CUIStatic* pWnd = xr_new<CUIStatic>(); |
| 110 | CUIXmlInit::InitStatic(m_xml, path, 0, pWnd); |
| 111 | pWnd->SetAutoDelete(true); |
| 112 | _attach_child(pWnd, parent); |
| 113 | //. if(parent) parent->AttachChild(pWnd); |
| 114 | return pWnd; |
| 115 | } |
| 116 | |
| 117 | CUIStatic* CScriptXmlInit::InitAnimStatic(LPCSTR path, CUIWindow* parent) |
| 118 | { |
nothing calls this directly
no test coverage detected