restored WS_EX_TRANSPARENT as otherwise background can be not drawn at all sometimes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31038 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-12-17 01:27:31 +00:00
parent e2b154e391
commit 301e257baf

View File

@@ -40,6 +40,11 @@
#include "wx/msw/private.h" #include "wx/msw/private.h"
// this is for Win CE
#ifndef WS_EX_TRANSPARENT
#define WS_EX_TRANSPARENT 0
#endif
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// wxWin macros // wxWin macros
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
@@ -115,7 +120,8 @@ bool wxStaticBox::Create(wxWindow *parent,
if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) ) if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
return false; 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 false;
return true; return true;