X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e90c1d2a19361551eb07778280f22be3e759cf64..cfcc39321282c5877cbb45248bb8004ced24516b:/src/generic/statline.cpp diff --git a/src/generic/statline.cpp b/src/generic/statline.cpp index b430f8d280..27437f2e6a 100644 --- a/src/generic/statline.cpp +++ b/src/generic/statline.cpp @@ -55,7 +55,7 @@ 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; } @@ -65,3 +65,13 @@ 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); +}