Addition of missing overrides to webkit.h

This commit is contained in:
Hartwig
2015-11-22 09:45:47 +01:00
parent 0b6b645412
commit da7c2e67b9

View File

@@ -87,9 +87,9 @@ public:
int GetScrollPos(); int GetScrollPos();
// don't hide base class virtuals // don't hide base class virtuals
virtual void SetScrollPos( int orient, int pos, bool refresh = true ) virtual void SetScrollPos( int orient, int pos, bool refresh = true ) wxOVERRIDE
{ return wxControl::SetScrollPos(orient, pos, refresh); } { return wxControl::SetScrollPos(orient, pos, refresh); }
virtual int GetScrollPos( int orient ) const virtual int GetScrollPos( int orient ) const wxOVERRIDE
{ return wxControl::GetScrollPos(orient); } { return wxControl::GetScrollPos(orient); }
//we need to resize the webview when the control size changes //we need to resize the webview when the control size changes
@@ -98,7 +98,7 @@ public:
void OnMouseEvents(wxMouseEvent &event); void OnMouseEvents(wxMouseEvent &event);
protected: protected:
wxDECLARE_EVENT_TABLE(); wxDECLARE_EVENT_TABLE();
void MacVisibilityChanged(); void MacVisibilityChanged() wxOVERRIDE;
private: private:
wxWindow *m_parent; wxWindow *m_parent;