]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/statbox.h
wxChar -> char
[wxWidgets.git] / include / wx / mac / carbon / statbox.h
index 2cd136e65080bfd987cfad51b567573e52c4b1aa..f0b2bbd7b20c1beea5a977e2cc1a67e5cbd8fa66 100644 (file)
 #ifndef _WX_STATBOX_H_
 #define _WX_STATBOX_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "statbox.h"
-#endif
-
 #include "wx/control.h"
 
-WXDLLEXPORT_DATA(extern const wxChar*) wxStaticBoxNameStr;
+WXDLLEXPORT_DATA(extern const wxChar) wxStaticBoxNameStr[];
 
 // Group box
 class WXDLLEXPORT wxStaticBox: public wxControl
@@ -48,6 +44,8 @@ class WXDLLEXPORT wxStaticBox: public wxControl
     virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {};
 
     virtual void GetBordersForSizer(int *borderTop, int *borderOther) const;
+    
+    virtual bool AcceptsFocus() const { return false; }
 };
 
 #endif