| 55 | void CScriptXmlInit::InitAutoStaticGroup(LPCSTR path, CUIWindow* pWnd) { CUIXmlInit::InitAutoStaticGroup(m_xml, path, 0, pWnd); } |
| 56 | |
| 57 | CUIFrameWindow* CScriptXmlInit::InitFrame(LPCSTR path, CUIWindow* parent) |
| 58 | { |
| 59 | CUIFrameWindow* pWnd = xr_new<CUIFrameWindow>(); |
| 60 | CUIXmlInit::InitFrameWindow(m_xml, path, 0, pWnd); |
| 61 | pWnd->SetAutoDelete(true); |
| 62 | _attach_child(pWnd, parent); |
| 63 | //. if(parent) parent->AttachChild(pWnd); |
| 64 | return pWnd; |
| 65 | } |
| 66 | |
| 67 | CUIFrameLineWnd* CScriptXmlInit::InitFrameLine(LPCSTR path, CUIWindow* parent) |
| 68 | { |
nothing calls this directly
no test coverage detected