| 65 | } |
| 66 | |
| 67 | CUIFrameLineWnd* CScriptXmlInit::InitFrameLine(LPCSTR path, CUIWindow* parent) |
| 68 | { |
| 69 | CUIFrameLineWnd* pWnd = xr_new<CUIFrameLineWnd>(); |
| 70 | CUIXmlInit::InitFrameLine(m_xml, path, 0, pWnd); |
| 71 | pWnd->SetAutoDelete(true); |
| 72 | _attach_child(pWnd, parent); |
| 73 | //. if(parent) parent->AttachChild(pWnd); |
| 74 | return pWnd; |
| 75 | } |
| 76 | |
| 77 | CUILabel* CScriptXmlInit::InitLabel(LPCSTR path, CUIWindow* parent) |
| 78 | { |
nothing calls this directly
no test coverage detected