X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6aa89a22b8e47000c98bff05c6f545f331f1c353..04fa04d8067d235ab45b5bc05b65f0679634b541:/src/univ/statline.cpp diff --git a/src/univ/statline.cpp b/src/univ/statline.cpp index 2eee48c214..b353bf7474 100644 --- a/src/univ/statline.cpp +++ b/src/univ/statline.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: univ/statline.cpp +// Name: src/univ/statline.cpp // Purpose: wxStaticLine implementation // Author: Vadim Zeitlin // Modified by: @@ -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)