| 20 | CUIDialogWnd::~CUIDialogWnd() {} |
| 21 | |
| 22 | void CUIDialogWnd::Show() |
| 23 | { |
| 24 | Fvector2 pos = GetUICursor()->GetCursorPosition(); |
| 25 | GetUICursor()->SetUICursorPosition(pos); |
| 26 | |
| 27 | inherited::Enable(true); |
| 28 | inherited::Show(true); |
| 29 | |
| 30 | ResetAll(); |
| 31 | } |
| 32 | |
| 33 | void CUIDialogWnd::Hide() |
| 34 | { |
nothing calls this directly
no test coverage detected