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();
// 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); }
virtual int GetScrollPos( int orient ) const
virtual int GetScrollPos( int orient ) const wxOVERRIDE
{ return wxControl::GetScrollPos(orient); }
//we need to resize the webview when the control size changes
@@ -98,7 +98,7 @@ public:
void OnMouseEvents(wxMouseEvent &event);
protected:
wxDECLARE_EVENT_TABLE();
void MacVisibilityChanged();
void MacVisibilityChanged() wxOVERRIDE;
private:
wxWindow *m_parent;