Updated the class name for wxWebKit to wxWebKitCtrl in sample.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27418 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
05b2a432c6
commit
bd1018b930
@ -86,7 +86,7 @@ public:
|
||||
void OnViewSource(wxCommandEvent& myEvent);
|
||||
void OnSetSource(wxCommandEvent& myEvent);
|
||||
void OnStateChanged(wxWebKitStateChangedEvent& myEvent);
|
||||
wxWebKitControl* mySafari;
|
||||
wxWebKitCtrl* mySafari;
|
||||
wxTextCtrl* urlText;
|
||||
private:
|
||||
// any class wishing to process wxWindows events must use this macro
|
||||
@ -186,7 +186,7 @@ MyFrame::MyFrame(const wxString& title)
|
||||
myToolbar->AddSeparator();
|
||||
myToolbar->Realize();
|
||||
|
||||
mySafari = new wxWebKitControl(this, ID_WEBKIT, _T("http://www.wxwidgets.org"), wxDefaultPosition, wxSize(200, 200));
|
||||
mySafari = new wxWebKitCtrl(this, ID_WEBKIT, _T("http://www.wxwidgets.org"), wxDefaultPosition, wxSize(200, 200));
|
||||
|
||||
#if wxUSE_STATUSBAR
|
||||
CreateStatusBar(2);
|
||||
@ -241,7 +241,7 @@ void MyFrame::OnViewSource(wxCommandEvent& myEvent){
|
||||
|
||||
void MyFrame::OnSetSource(wxCommandEvent& myEvent){
|
||||
if (mySafari){
|
||||
wxString myText = wxString("<HTML><HEAD></HEAD><BODY><P>Hello world!</P></BODY></HTML>");
|
||||
wxString myText = wxT("<HTML><HEAD></HEAD><BODY><P>Hello world!</P></BODY></HTML>");
|
||||
mySafari->SetPageSource(myText);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user