#include "wx/statline.h"
+#if wxUSE_STATLINE
+
#include "wx/msw/private.h"
+#include "wx/log.h"
// ============================================================================
// implementation
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"),
- "",
+ wxT("STATIC"),
+ wxT(""),
WS_VISIBLE | WS_CHILD |
SS_GRAYRECT | SS_SUNKEN, // | SS_ETCHEDFRAME,
pos.x, pos.y, sizeReal.x, sizeReal.y,
if ( !m_hWnd )
{
- wxLogDebug(_T("Failed to create static control"));
-
+#ifdef __WXDEBUG__
+ wxLogDebug(wxT("Failed to create static control"));
+#endif
return FALSE;
}
return TRUE;
}
+#endif