X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..3b49331b7441e091fc5997b830801d76a1243f28:/include/wx/os2/statline.h diff --git a/include/wx/os2/statline.h b/include/wx/os2/statline.h index 4a98f8a1d5..76625e51ca 100644 --- a/include/wx/os2/statline.h +++ b/include/wx/os2/statline.h @@ -5,16 +5,12 @@ // Created: 28.06.99 // Version: $Id$ // Copyright: (c) 1998 Vadim Zeitlin -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_OS2_STATLINE_H_ #define _WX_OS2_STATLINE_H_ -#ifdef __GNUG__ - #pragma interface -#endif - // ---------------------------------------------------------------------------- // wxStaticLine // ---------------------------------------------------------------------------- @@ -26,22 +22,22 @@ public: // constructors and pseudo-constructors wxStaticLine() { } wxStaticLine( wxWindow* pParent - ,wxWindowID vId + ,wxWindowID vId = wxID_ANY ,const wxPoint& rPos = wxDefaultPosition ,const wxSize& rSize = wxDefaultSize ,long lStyle = wxLI_HORIZONTAL - ,const wxString& rsName = wxStaticTextNameStr + ,const wxString& rsName = wxStaticLineNameStr ) { Create(pParent, vId, rPos, rSize, lStyle, rsName); } bool Create( wxWindow* pParent - ,wxWindowID vId + ,wxWindowID vId = wxID_ANY ,const wxPoint& rPos = wxDefaultPosition ,const wxSize& rSize = wxDefaultSize ,long lStyle = wxLI_HORIZONTAL - ,const wxString& rsName = wxStaticTextNameStr + ,const wxString& rsName = wxStaticLineNameStr ); inline bool IsVertical(void) const { return((GetWindowStyleFlag() & wxLI_VERTICAL) != 0); }