X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/223d09f6b523aac674ef9b72a883dfa8d37c5d4e..a5f0148111ab0391dcf736346dc893d907c51190:/src/generic/statline.cpp diff --git a/src/generic/statline.cpp b/src/generic/statline.cpp index 964385982f..122af46799 100644 --- a/src/generic/statline.cpp +++ b/src/generic/statline.cpp @@ -20,6 +20,7 @@ #pragma implementation "statline.h" #endif +#if wxUSE_STATLINE // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -65,3 +66,16 @@ 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); +} + +#endif + // wxUSE_STATLINE