| 4 | #include "UIFrameWindow.h" |
| 5 | |
| 6 | CUIEditBoxEx::CUIEditBoxEx() |
| 7 | { |
| 8 | m_pFrameWindow = xr_new<CUIFrameWindow>(); |
| 9 | AttachChild(m_pFrameWindow); |
| 10 | m_lines.SetTextComplexMode(true); |
| 11 | m_lines.SetUseNewLineMode(false); |
| 12 | m_lines.SetVTextAlignment(valTop); |
| 13 | } |
| 14 | |
| 15 | CUIEditBoxEx::~CUIEditBoxEx() { xr_delete(m_pFrameWindow); } |
| 16 |
nothing calls this directly
no test coverage detected