Bring gtk class naming into line with the new naming scheme by dropping the gtk part.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68074 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton
2011-06-28 16:57:49 +00:00
parent 66f2aa61c3
commit b64b4e70f1
3 changed files with 42 additions and 42 deletions

View File

@@ -12,20 +12,20 @@
#include "wx/setup.h"
#if wxHAVE_WEB_BACKEND_GTK_WEBKIT
#if wxUSE_WEBVIEW_WEBKIT
#include "wx/webview.h"
//-----------------------------------------------------------------------------
// wxWebViewGTKWebKit
// wxWebViewWebKit
//-----------------------------------------------------------------------------
class WXDLLIMPEXP_WEB wxWebViewGTKWebKit : public wxWebView
class WXDLLIMPEXP_WEB wxWebViewWebKit : public wxWebView
{
public:
wxWebViewGTKWebKit() { Init(); }
wxWebViewWebKit() { Init(); }
wxWebViewGTKWebKit(wxWindow *parent,
wxWebViewWebKit(wxWindow *parent,
wxWindowID id = wxID_ANY,
const wxString& url = wxWebViewDefaultURLStr,
const wxPoint& pos = wxDefaultPosition,
@@ -109,7 +109,7 @@ private:
GtkWidget *web_view;
// FIXME: try to get DECLARE_DYNAMIC_CLASS macros & stuff right
//DECLARE_DYNAMIC_CLASS(wxWebViewGTKWebKit)
//DECLARE_DYNAMIC_CLASS(wxWebViewWebKit)
};
#endif // if wxHAVE_WEB_BACKEND_GTK_WEBKIT