_T() -> wxT()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9203 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-01-28 23:21:20 +00:00
parent f2ab8671bf
commit a559d70856
37 changed files with 281 additions and 281 deletions

View File

@@ -39,22 +39,22 @@ wxObject *wxHtmlWindowXmlHandler::DoCreateResource()
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 IsOfClass(node, _T("wxHtmlWindow"));
return IsOfClass(node, wxT("wxHtmlWindow"));
}
#endif // wxUSE_HTML