| 115 | } |
| 116 | |
| 117 | CUIStatic* CScriptXmlInit::InitAnimStatic(LPCSTR path, CUIWindow* parent) |
| 118 | { |
| 119 | CUIAnimatedStatic* pWnd = xr_new<CUIAnimatedStatic>(); |
| 120 | CUIXmlInit::InitAnimatedStatic(m_xml, path, 0, pWnd); |
| 121 | pWnd->SetAutoDelete(true); |
| 122 | _attach_child(pWnd, parent); |
| 123 | //. if(parent) parent->AttachChild(pWnd); |
| 124 | return pWnd; |
| 125 | } |
| 126 | |
| 127 | CUIScrollView* CScriptXmlInit::InitScrollView(LPCSTR path, CUIWindow* parent) |
| 128 | { |
nothing calls this directly
no test coverage detected