| 155 | } |
| 156 | |
| 157 | CUISpinFlt* CScriptXmlInit::InitSpinFlt(LPCSTR path, CUIWindow* parent) |
| 158 | { |
| 159 | CUISpinFlt* pWnd = xr_new<CUISpinFlt>(); |
| 160 | CUIXmlInit::InitSpin(m_xml, path, 0, pWnd); |
| 161 | pWnd->SetAutoDelete(true); |
| 162 | _attach_child(pWnd, parent); |
| 163 | //. if(parent) parent->AttachChild(pWnd); |
| 164 | return pWnd; |
| 165 | } |
| 166 | |
| 167 | CUISpinText* CScriptXmlInit::InitSpinText(LPCSTR path, CUIWindow* parent) |
| 168 | { |
nothing calls this directly
no test coverage detected