X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7a4b8f27709c3dd59a5b447850389ca25f178047..578dc95029e761a59911b7c1bc09f59384d64ddf:/src/generic/statline.cpp?ds=inline diff --git a/src/generic/statline.cpp b/src/generic/statline.cpp index f6872ff56a..27437f2e6a 100644 --- a/src/generic/statline.cpp +++ b/src/generic/statline.cpp @@ -55,7 +55,23 @@ bool wxStaticLine::Create( wxWindow *parent, wxSize sizeReal = AdjustSize(size); - m_statbox = new wxStaticBox(parent, id, _T(""), pos, sizeReal, style, name); + m_statbox = new wxStaticBox(parent, id, wxT(""), pos, sizeReal, style, name); return TRUE; } + + +WXWidget wxStaticLine::GetMainWidget() const +{ + return m_statbox->GetMainWidget(); +} + +void wxStaticLine::DoSetSize(int x, int y, int width, int height, int sizeFlags) +{ + m_statbox->SetSize(x, y, width, height, sizeFlags); +} + +void wxStaticLine::DoMoveWindow(int x, int y, int width, int height) +{ + m_statbox->SetSize(x, y, width, height); +}