X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..0f1b6d7b589f19cd93f3a5500fedd66312a282ec:/include/wx/univ/statline.h diff --git a/include/wx/univ/statline.h b/include/wx/univ/statline.h index 3965165d92..0711fc5b08 100644 --- a/include/wx/univ/statline.h +++ b/include/wx/univ/statline.h @@ -8,10 +8,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "univstatline.h" -#endif - #ifndef _WX_UNIV_STATLINE_H_ #define _WX_UNIV_STATLINE_H_ @@ -26,28 +22,28 @@ public: wxCoord length, long style = wxLI_HORIZONTAL) { - Create(parent, -1, pos, - style & wxLI_VERTICAL ? wxSize(-1, length) - : wxSize(length, -1), + Create(parent, wxID_ANY, pos, + style & wxLI_VERTICAL ? wxSize(wxDefaultCoord, length) + : wxSize(length, wxDefaultCoord), style); } wxStaticLine(wxWindow *parent, - wxWindowID id, + wxWindowID id = wxID_ANY, const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, long style = wxLI_HORIZONTAL, - const wxString &name = wxStaticTextNameStr ) + const wxString &name = wxStaticLineNameStr ) { Create(parent, id, pos, size, style, name); } bool Create(wxWindow *parent, - wxWindowID id, + wxWindowID id = wxID_ANY, const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, long style = wxLI_HORIZONTAL, - const wxString &name = wxStaticTextNameStr ); + const wxString &name = wxStaticLineNameStr ); protected: virtual void DoDraw(wxControlRenderer *renderer);