From: David Webster Date: Tue, 18 Dec 2001 17:35:58 +0000 (+0000) Subject: Fixed a linking problem as some virtuals and static not properly defined X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/32334453e78efe7242c8203f9bfbe37a0896cbfc Fixed a linking problem as some virtuals and static not properly defined git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13075 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/os2/spinctrl.cpp b/src/os2/spinctrl.cpp index ed056cafaf..75a4b4589d 100644 --- a/src/os2/spinctrl.cpp +++ b/src/os2/spinctrl.cpp @@ -44,6 +44,7 @@ extern void wxAssociateWinWithHandle( HWND hWnd ,wxWindowOS2* pWin ); static WXFARPROC fnWndProcSpinCtrl = (WXFARPROC)NULL; +wxArraySpins wxSpinCtrl::m_svAllSpins; IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl, wxControl) diff --git a/src/os2/statbmp.cpp b/src/os2/statbmp.cpp index 2581c22854..f162d5c472 100644 --- a/src/os2/statbmp.cpp +++ b/src/os2/statbmp.cpp @@ -172,3 +172,11 @@ void wxStaticBitmap::SetImage( ::WinInvalidateRect(GetHwndOf(GetParent()), &vRect, TRUE); } +MRESULT wxStaticBitmap::OS2WindowProc( + WXUINT uMsg +, WXWPARAM wParam +, WXLPARAM lParam +) +{ + return wxWindow::OS2WindowProc(uMsg, wParam, lParam); +} // end of wxStaticBitmap::OS2WindowProc