| 145 | } |
| 146 | |
| 147 | CUISpinNum* CScriptXmlInit::InitSpinNum(LPCSTR path, CUIWindow* parent) |
| 148 | { |
| 149 | CUISpinNum* pWnd = xr_new<CUISpinNum>(); |
| 150 | CUIXmlInit::InitSpin(m_xml, path, 0, pWnd); |
| 151 | pWnd->SetAutoDelete(true); |
| 152 | _attach_child(pWnd, parent); |
| 153 | //. if(parent) parent->AttachChild(pWnd); |
| 154 | return pWnd; |
| 155 | } |
| 156 | |
| 157 | CUISpinFlt* CScriptXmlInit::InitSpinFlt(LPCSTR path, CUIWindow* parent) |
| 158 | { |
nothing calls this directly
no test coverage detected