Make a few internal methods private.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68758 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton 2011-08-17 10:36:14 +00:00
parent e669ddde23
commit fba4c7c91b

View File

@ -60,11 +60,6 @@ public:
DoMoveWindow(x, y, width, height);
}
void ZoomIn();
void ZoomOut();
void SetWebkitZoom(float level);
float GetWebkitZoom() const;
virtual void Stop();
virtual void LoadUrl(const wxString& url);
virtual void GoBack();
@ -149,6 +144,11 @@ protected:
private:
void ZoomIn();
void ZoomOut();
void SetWebkitZoom(float level);
float GetWebkitZoom() const;
// focus event handler: calls GTKUpdateBitmap()
void GTKOnFocus(wxFocusEvent& event);