X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3ad70d312ed44871daaaa97be0ebcebadd9ae6ce..7c7a653bec7c85eccce74ee1dcb060011f5b51cf:/src/msw/statbox.cpp diff --git a/src/msw/statbox.cpp b/src/msw/statbox.cpp index a7a5b72374..6cd10ee393 100644 --- a/src/msw/statbox.cpp +++ b/src/msw/statbox.cpp @@ -40,6 +40,11 @@ #include "wx/msw/private.h" +// this is for Win CE +#ifndef WS_EX_TRANSPARENT + #define WS_EX_TRANSPARENT 0 +#endif + // ---------------------------------------------------------------------------- // wxWin macros // ---------------------------------------------------------------------------- @@ -115,7 +120,8 @@ bool wxStaticBox::Create(wxWindow *parent, if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) ) return false; - if ( !MSWCreateControl(wxT("BUTTON"), BS_GROUPBOX, pos, size, label, 0) ) + if ( !MSWCreateControl(wxT("BUTTON"), BS_GROUPBOX, pos, size, label, + WS_EX_TRANSPARENT) ) return false; return true;