long style,
const wxString &name)
{
- if ( !CreateBase(parent, id, pos, size, style, name) )
+ if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
return FALSE;
parent->AddChild(this);
m_hWnd = (WXHWND)::CreateWindow
(
- _T("STATIC"),
- _T(""),
+ wxT("STATIC"),
+ wxT(""),
WS_VISIBLE | WS_CHILD |
SS_GRAYRECT | SS_SUNKEN, // | SS_ETCHEDFRAME,
pos.x, pos.y, sizeReal.x, sizeReal.y,
if ( !m_hWnd )
{
#ifdef __WXDEBUG__
- wxLogDebug(_T("Failed to create static control"));
+ wxLogDebug(wxT("Failed to create static control"));
#endif
return FALSE;
}