From: Steve Lamerton Date: Wed, 17 Aug 2011 10:36:14 +0000 (+0000) Subject: Make a few internal methods private. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fba4c7c91b0d764e9cc92f6095b19b95cce92773 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 --- diff --git a/include/wx/gtk/webview_webkit.h b/include/wx/gtk/webview_webkit.h index 1a8f3a825f..3bd95f94ed 100644 --- a/include/wx/gtk/webview_webkit.h +++ b/include/wx/gtk/webview_webkit.h @@ -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);