panel = new wxPanel(m_ParentAsWindow,
GetID(),
GetPosition(), GetSize(),
- GetStyle(_T("style"), 0),
+ GetStyle(wxT("style"), 0),
GetName());
else
panel->Create(m_ParentAsWindow,
GetID(),
GetPosition(), GetSize(),
- GetStyle(_T("style"), 0),
+ GetStyle(wxT("style"), 0),
GetName());
SetupWindow(panel);
CreateChildren(panel);
bool wxPanelXmlHandler::CanHandle(wxXmlNode *node)
{
- return IsOfClass(node, _T("wxPanel"));
+ return IsOfClass(node, wxT("wxPanel"));
}