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
This commit is contained in:
David Webster
2001-12-18 17:35:58 +00:00
parent 5c8835b94c
commit 32334453e7
2 changed files with 9 additions and 0 deletions

View File

@@ -44,6 +44,7 @@ extern void wxAssociateWinWithHandle( HWND hWnd
,wxWindowOS2* pWin ,wxWindowOS2* pWin
); );
static WXFARPROC fnWndProcSpinCtrl = (WXFARPROC)NULL; static WXFARPROC fnWndProcSpinCtrl = (WXFARPROC)NULL;
wxArraySpins wxSpinCtrl::m_svAllSpins;
IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl, wxControl) IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl, wxControl)

View File

@@ -172,3 +172,11 @@ void wxStaticBitmap::SetImage(
::WinInvalidateRect(GetHwndOf(GetParent()), &vRect, TRUE); ::WinInvalidateRect(GetHwndOf(GetParent()), &vRect, TRUE);
} }
MRESULT wxStaticBitmap::OS2WindowProc(
WXUINT uMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
{
return wxWindow::OS2WindowProc(uMsg, wParam, lParam);
} // end of wxStaticBitmap::OS2WindowProc