| 135 | } |
| 136 | |
| 137 | CUICheckButton* CScriptXmlInit::InitCheck(LPCSTR path, CUIWindow* parent) |
| 138 | { |
| 139 | CUICheckButton* pWnd = xr_new<CUICheckButton>(); |
| 140 | CUIXmlInit::InitCheck(m_xml, path, 0, pWnd); |
| 141 | pWnd->SetAutoDelete(true); |
| 142 | _attach_child(pWnd, parent); |
| 143 | //. if(parent) parent->AttachChild(pWnd); |
| 144 | return pWnd; |
| 145 | } |
| 146 | |
| 147 | CUISpinNum* CScriptXmlInit::InitSpinNum(LPCSTR path, CUIWindow* parent) |
| 148 | { |
nothing calls this directly
no test coverage detected