X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/09dc1241b72e4c03d2ebd757bb063296aef7a18e..00b2a5df9502adfd9a14ce01ab603f7906984995:/contrib/src/xml/xh_html.cpp diff --git a/contrib/src/xml/xh_html.cpp b/contrib/src/xml/xh_html.cpp index e94e0c8f96..30ab0b46b2 100644 --- a/contrib/src/xml/xh_html.cpp +++ b/contrib/src/xml/xh_html.cpp @@ -36,25 +36,25 @@ wxHtmlWindowXmlHandler::wxHtmlWindowXmlHandler() wxObject *wxHtmlWindowXmlHandler::DoCreateResource() { - wxHtmlWindow *control = new wxHtmlWindow(m_ParentAsWindow, + wxHtmlWindow *control = new wxHtmlWindow(m_parentAsWindow, GetID(), GetPosition(), GetSize(), - GetStyle( _T("style" ), wxHW_SCROLLBAR_AUTO), + GetStyle( wxT("style" ), wxHW_SCROLLBAR_AUTO), GetName() ); - if( HasParam( _T("borders") )) + if( HasParam( wxT("borders") )) { - control->SetBorders( GetDimension( _T("borders" ))); + control->SetBorders( GetDimension( wxT("borders" ))); } - if( HasParam( _T("url") )) + if( HasParam( wxT("url") )) { - control->LoadPage( GetParamValue( _T("url" ))); + control->LoadPage( GetParamValue( wxT("url" ))); } - else if( HasParam( _T("htmlcode") )) + else if( HasParam( wxT("htmlcode") )) { - control->SetPage( GetText(_T("htmlcode")) ); + control->SetPage( GetText(wxT("htmlcode")) ); } SetupWindow(control); @@ -66,7 +66,7 @@ wxObject *wxHtmlWindowXmlHandler::DoCreateResource() bool wxHtmlWindowXmlHandler::CanHandle(wxXmlNode *node) { - return node->GetName() == _T("htmlwindow"); + return IsOfClass(node, wxT("wxHtmlWindow")); } #endif // wxUSE_HTML