X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/223d09f6b523aac674ef9b72a883dfa8d37c5d4e..739555e3218220043efa230cca8e44a91ae82d30:/src/generic/statline.cpp?ds=sidebyside diff --git a/src/generic/statline.cpp b/src/generic/statline.cpp index 964385982f..27437f2e6a 100644 --- a/src/generic/statline.cpp +++ b/src/generic/statline.cpp @@ -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); +}