X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/af49c4b8a2d3553e733e71c7dd3911881f4c1a2a..d51305e81eb593bedd92cda864671e15209c268f:/include/wx/generic/statline.h diff --git a/include/wx/generic/statline.h b/include/wx/generic/statline.h index 32ec10dee6..a2993d8f84 100644 --- a/include/wx/generic/statline.h +++ b/include/wx/generic/statline.h @@ -11,7 +11,7 @@ #ifndef _WX_GENERIC_STATLINE_H_ #define _WX_GENERIC_STATLINE_H_ -#if defined(__GNUG__) && !defined(__APPLE__) +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "statline.h" #endif @@ -27,10 +27,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 +39,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,