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);
bool wxHtmlWindowXmlHandler::CanHandle(wxXmlNode *node)
{
- return node->GetName() == _T("htmlwindow");
+ return IsOfClass(node, wxT("wxHtmlWindow"));
}
#endif // wxUSE_HTML