#if wxUSE_STATLINE
#include "wx/msw/private.h"
+#include "wx/log.h"
// ============================================================================
// implementation
m_hWnd = (WXHWND)::CreateWindow
(
_T("STATIC"),
- "",
+ _T(""),
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"));
-
+#endif
return FALSE;
}