| 225 | } |
| 226 | |
| 227 | CUIMMShniaga* CScriptXmlInit::InitMMShniaga(LPCSTR path, CUIWindow* parent) |
| 228 | { |
| 229 | CUIMMShniaga* pWnd = xr_new<CUIMMShniaga>(); |
| 230 | pWnd->Init(m_xml, path); |
| 231 | pWnd->SetAutoDelete(true); |
| 232 | _attach_child(pWnd, parent); |
| 233 | //. if(parent) parent->AttachChild(pWnd); |
| 234 | return pWnd; |
| 235 | } |
| 236 | |
| 237 | CUIWindow* CScriptXmlInit::InitKeyBinding(LPCSTR path, CUIWindow* parent) |
| 238 | { |
nothing calls this directly
no test coverage detected