]> git.saurik.com Git - wxWidgets.git/commitdiff
restored WS_EX_TRANSPARENT as otherwise background can be not drawn at all sometimes
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 17 Dec 2004 01:27:31 +0000 (01:27 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 17 Dec 2004 01:27:31 +0000 (01:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31038 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/statbox.cpp

index a7a5b723741ffcfac8fa5d31a39ecf08cbc096a0..6cd10ee393be23c3c66bcb0b98d45a6b607d00bd 100644 (file)
 
 #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;