X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/16361ec94128d2cea3a08c2c84a4eb38232715d6..3fedffdc050002815e2b79052469c3105d2881c9:/include/wx/scrolwin.h?ds=sidebyside diff --git a/include/wx/scrolwin.h b/include/wx/scrolwin.h index 62ccdb04b1..1aca7a9a66 100644 --- a/include/wx/scrolwin.h +++ b/include/wx/scrolwin.h @@ -271,7 +271,7 @@ struct WXDLLIMPEXP_CORE wxScrolledT_Helper const wxScrollHelperNative *helper, const wxSize& origBest); #ifdef __WXMSW__ - static WXLRESULT FilterMSWWindowProc(WXLRESULT origResult); + static WXLRESULT FilterMSWWindowProc(WXUINT nMsg, WXLRESULT origResult); #endif }; @@ -306,7 +306,7 @@ public: m_targetWindow = this; #ifdef __WXMAC__ - MacSetClipChildren(true); + this->MacSetClipChildren(true); #endif this->Connect(wxEVT_PAINT, wxPaintEventHandler(wxScrolled::OnPaint)); @@ -325,7 +325,7 @@ public: #ifdef __WXMSW__ virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) { - return FilterMSWWindowProc(T::MSWWindowProc(nMsg, wParam, lParam)); + return FilterMSWWindowProc(nMsg, T::MSWWindowProc(nMsg, wParam, lParam)); } #endif // __WXMSW__