]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/statbox.cpp
pass correct tool id (and not always -1) to EVT_TOOL_RCLICKED() handler
[wxWidgets.git] / src / msw / statbox.cpp
index 4173fcfee65cf00e76f34dcc66a408c7be9ab7da..6cd10ee393be23c3c66bcb0b98d45a6b607d00bd 100644 (file)
 #endif
 
 #include "wx/statbox.h"
+#include "wx/notebook.h"
 
 #include "wx/msw/private.h"
-#include "wx/msw/notebook.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;