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:
@@ -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)
|
||||||
|
|
||||||
|
@@ -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
|
||||||
|
Reference in New Issue
Block a user