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

@@ -49,7 +49,7 @@ wxWebView* wxWebView::New(wxWebViewBackend backend)
#if defined(wxUSE_WEBVIEW_WEBKIT) && defined(__WXGTK__)
case wxWEB_VIEW_BACKEND_GTK_WEBKIT:
return new wxWebViewGTKWebKit();
return new wxWebViewWebKit();
#endif
#if wxUSE_WEBVIEW_IE
@@ -64,7 +64,7 @@ wxWebView* wxWebView::New(wxWebViewBackend backend)
#endif
#if defined(wxUSE_WEBVIEW_WEBKIT) && defined(__WXGTK__)
return new wxWebViewGTKWebKit();
return new wxWebViewWebKit();
#endif
#if wxUSE_WEBVIEW_IE
@@ -97,7 +97,7 @@ wxWebView* wxWebView::New(wxWindow* parent,
#if defined(wxUSE_WEBVIEW_WEBKIT) && defined(__WXGTK__)
case wxWEB_VIEW_BACKEND_GTK_WEBKIT:
return new wxWebViewGTKWebKit(parent, id, url, pos, size, style,
return new wxWebViewWebKit(parent, id, url, pos, size, style,
name);
#endif
@@ -113,7 +113,7 @@ wxWebView* wxWebView::New(wxWindow* parent,
#endif
#if defined(wxUSE_WEBVIEW_WEBKIT) && defined(__WXGTK__)
return new wxWebViewGTKWebKit(parent, id, url, pos, size, style, name);
return new wxWebViewWebKit(parent, id, url, pos, size, style, name);
#endif
#if wxUSE_WEBVIEW_IE