Bring osx class naming into line with the other ports.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68167 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton
2011-07-05 13:57:44 +00:00
parent 25b7299d16
commit 0a6c851624
3 changed files with 62 additions and 62 deletions

View File

@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////////////////////
// Name: include/wx/osx/webkit.h
// Purpose: wxOSXWebKitCtrl - embeddable web kit control,
// Purpose: wxWebViewWebKit - embeddable web kit control,
// OS X implementation of web view component
// Author: Jethro Grassie / Kevin Ollivier / Marianne Gagnon
// Modified by:
@@ -24,13 +24,13 @@
// Web Kit Control
// ----------------------------------------------------------------------------
class WXDLLIMPEXP_WEB wxOSXWebKitCtrl : public wxWebView
class WXDLLIMPEXP_WEB wxWebViewWebKit : public wxWebView
{
public:
wxDECLARE_DYNAMIC_CLASS(wxOSXWebKitCtrl);
wxDECLARE_DYNAMIC_CLASS(wxWebViewWebKit);
wxOSXWebKitCtrl() {}
wxOSXWebKitCtrl(wxWindow *parent,
wxWebViewWebKit() {}
wxWebViewWebKit(wxWindow *parent,
wxWindowID winID = wxID_ANY,
const wxString& strURL = wxWebViewDefaultURLStr,
const wxPoint& pos = wxDefaultPosition,
@@ -45,7 +45,7 @@ public:
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0,
const wxString& name = wxWebViewNameStr);
virtual ~wxOSXWebKitCtrl();
virtual ~wxWebViewWebKit();
void InternalLoadURL(const wxString &url);