X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..ce4b7808ca940be201422a066de141ca12f13863:/include/wx/univ/statline.h diff --git a/include/wx/univ/statline.h b/include/wx/univ/statline.h index 86958ca425..6b6af3c56d 100644 --- a/include/wx/univ/statline.h +++ b/include/wx/univ/statline.h @@ -5,13 +5,9 @@ // Created: 28.06.99 // Version: $Id$ // Copyright: (c) 1999 Vadim Zeitlin -// Licence: wxWidgets licence +// 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,14 +22,14 @@ 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, @@ -43,7 +39,7 @@ public: } bool Create(wxWindow *parent, - wxWindowID id, + wxWindowID id = wxID_ANY, const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, long style = wxLI_HORIZONTAL,