X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/71908213057690d5452f72b2b9c8e62b53357170..eba99da4c0563e6508761272a1e1f1b791d0af6b:/include/wx/univ/statline.h?ds=sidebyside diff --git a/include/wx/univ/statline.h b/include/wx/univ/statline.h index 5896a48060..56545ae3f4 100644 --- a/include/wx/univ/statline.h +++ b/include/wx/univ/statline.h @@ -8,8 +8,8 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ - #pragma interface "statline.h" +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) + #pragma interface "univstatline.h" #endif #ifndef _WX_UNIV_STATLINE_H_ @@ -26,14 +26,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 +43,7 @@ public: } bool Create(wxWindow *parent, - wxWindowID id, + wxWindowID id = wxID_ANY, const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, long style = wxLI_HORIZONTAL,