]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/statline.h
Bitmap button updates
[wxWidgets.git] / include / wx / mac / statline.h
index af6516c90de3f68cb5f2d0bcfd05eb0113005d9c..4651d0455791823f01c1f7aadfb0b447684ae6fb 100644 (file)
@@ -11,8 +11,8 @@
 #ifndef _WX_GENERIC_STATLINE_H_
 #define _WX_GENERIC_STATLINE_H_
 
-#ifdef __GNUG__
-    #pragma interface
+#if defined(__GNUG__) && !defined(__APPLE__)
+    #pragma interface "statline.h"
 #endif
 
 class wxStaticBox;
@@ -27,7 +27,7 @@ class WXDLLEXPORT wxStaticLine : public wxStaticLineBase
 
 public:
     // constructors and pseudo-constructors
-    wxStaticLine() { }
+    wxStaticLine() : m_statbox(NULL) { }
 
     wxStaticLine( wxWindow *parent,
                   wxWindowID id,
@@ -35,6 +35,7 @@ public:
                   const wxSize &size = wxDefaultSize,
                   long style = wxLI_HORIZONTAL,
                   const wxString &name = wxStaticTextNameStr )
+        : m_statbox(NULL)
     {
         Create(parent, id, pos, size, style, name);
     }