#pragma hdrstop
#endif
+#include "wx/window.h"
+#include "wx/msw/private.h"
+
#ifndef WX_PRECOMP
-#include "wx/dcclient.h"
#include "wx/app.h"
+#include "wx/dcclient.h"
#endif
#include "wx/statbox.h"
-#include "wx/msw/private.h"
#if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl)
WXDWORD exStyle = Determine3DEffects(0, &want3D) ;
HWND wx_button =
- CreateWindowEx(exStyle, "BUTTON", (const char *)label, msStyle,
+ CreateWindowEx(exStyle, _T("BUTTON"), (const wxChar *)label, msStyle,
0, 0, 0, 0, (HWND) parent->GetHWND(), (HMENU)m_windowId,
wxGetInstance(), NULL);
#if wxUSE_CTL3D
void wxStaticBox::SetLabel(const wxString& label)
{
- SetWindowText((HWND)m_hWnd, (const char *)label);
+ SetWindowText((HWND)m_hWnd, (const wxChar *)label);
}
void wxStaticBox::DoSetSize(int x, int y, int width, int height, int sizeFlags)