Addition of missing overrides to webkit.h
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user