]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/statline.h
Renamed wx.FutureCall to wx.CallLater so it is named more like
[wxWidgets.git] / include / wx / generic / statline.h
index 32ec10dee64b8d063baf3d1f7e2cadd9dc153b4b..aadf1250b2646efe37e186b68e0dbeed6cb31ec9 100644 (file)
 #ifndef _WX_GENERIC_STATLINE_H_
 #define _WX_GENERIC_STATLINE_H_
 
-#if defined(__GNUG__) && !defined(__APPLE__)
-    #pragma interface "statline.h"
-#endif
-
 class wxStaticBox;
 
 // ----------------------------------------------------------------------------
@@ -27,10 +23,10 @@ class WXDLLEXPORT wxStaticLine : public wxStaticLineBase
 
 public:
     // constructors and pseudo-constructors
-    wxStaticLine() { }
+    wxStaticLine() { m_statbox = NULL; }
 
     wxStaticLine( wxWindow *parent,
-                  wxWindowID id,
+                  wxWindowID id = wxID_ANY,
                   const wxPoint &pos = wxDefaultPosition,
                   const wxSize &size = wxDefaultSize,
                   long style = wxLI_HORIZONTAL,
@@ -39,8 +35,10 @@ public:
         Create(parent, id, pos, size, style, name);
     }
 
+    virtual ~wxStaticLine();
+
     bool Create( wxWindow *parent,
-                 wxWindowID id,
+                 wxWindowID id = wxID_ANY,
                  const wxPoint &pos = wxDefaultPosition,
                  const wxSize &size = wxDefaultSize,
                  long style = wxLI_HORIZONTAL,