X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/29391f32dd4d0087f6fb1660a688dd3c87e87577..7da33e042c4e373e2e97e428f5c174f324c69c93:/include/wx/html/webkit.h diff --git a/include/wx/html/webkit.h b/include/wx/html/webkit.h index 6ab9f806db..2a1fea8f58 100644 --- a/include/wx/html/webkit.h +++ b/include/wx/html/webkit.h @@ -85,6 +85,12 @@ public: void SetScrollPos(int pos); int GetScrollPos(); + // don't hide base class virtuals + virtual void SetScrollPos( int orient, int pos, bool refresh = true ) + { return wxControl::SetScrollPos(orient, pos, refresh); } + virtual int GetScrollPos( int orient ) const + { return wxControl::GetScrollPos(orient); } + //we need to resize the webview when the control size changes void OnSize(wxSizeEvent &event); void OnMove(wxMoveEvent &event);