X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/442b35b53bf95f5c6c003ea9ddbefd17adbc2a00..51ec29ea5d1d1093bafbae27a8483211a90d9659:/src/univ/statline.cpp?ds=sidebyside diff --git a/src/univ/statline.cpp b/src/univ/statline.cpp index 4f6e832458..b353bf7474 100644 --- a/src/univ/statline.cpp +++ b/src/univ/statline.cpp @@ -1,12 +1,12 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: univ/statline.cpp +// Name: src/univ/statline.cpp // Purpose: wxStaticLine implementation // Author: Vadim Zeitlin // Modified by: // Created: 25.08.00 // RCS-ID: $Id$ // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com) -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// // ============================================================================ @@ -17,10 +17,6 @@ // headers // ---------------------------------------------------------------------------- -#ifdef __GNUG__ - #pragma implementation "univstatline.h" -#endif - #include "wx/wxprec.h" #ifdef __BORLANDC__ @@ -42,8 +38,6 @@ // implementation // ============================================================================ -IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl) - // ---------------------------------------------------------------------------- // wxStaticLine // ---------------------------------------------------------------------------- @@ -56,13 +50,13 @@ bool wxStaticLine::Create(wxWindow *parent, const wxString &name) { if ( !wxControl::Create(parent, id, pos, size, style, wxDefaultValidator, name) ) - return FALSE; + return false; wxSize sizeReal = AdjustSize(size); if ( sizeReal != size ) SetSize(sizeReal); - return TRUE; + return true; } void wxStaticLine::DoDraw(wxControlRenderer *renderer)