X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/72e7876ba5ad16a1b03bb2449ea7886ec648854a..0e05227246cc99b2f8133ae639f38c508351afa0:/src/mac/carbon/statline.cpp diff --git a/src/mac/carbon/statline.cpp b/src/mac/carbon/statline.cpp index 52f3d40733..aa7c133387 100644 --- a/src/mac/carbon/statline.cpp +++ b/src/mac/carbon/statline.cpp @@ -8,19 +8,6 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -// ============================================================================ -// declarations -// ============================================================================ - -// ---------------------------------------------------------------------------- -// headers -// ---------------------------------------------------------------------------- - -#ifdef __GNUG__ - #pragma implementation "statline.h" -#endif - -// For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" #ifdef __BORLANDC__ @@ -30,32 +17,25 @@ #include "wx/statline.h" #include "wx/statbox.h" -// ============================================================================ -// implementation -// ============================================================================ - IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl) -// ---------------------------------------------------------------------------- -// wxStaticLine -// ---------------------------------------------------------------------------- bool wxStaticLine::Create( wxWindow *parent, - wxWindowID id, - const wxPoint &pos, - const wxSize &size, - long style, - const wxString &name) + wxWindowID id, + const wxPoint &pos, + const wxSize &size, + long style, + const wxString &name ) { - if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) ) - return FALSE; + if ( !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ) ) + return false; - // ok, this is ugly but it's better than nothing: use a thin static box to - // emulate static line + // this is ugly but it's better than nothing: + // use a thin static box to emulate static line - wxSize sizeReal = AdjustSize(size); + wxSize sizeReal = AdjustSize( size ); -// m_statbox = new wxStaticBox(parent, id, wxT(""), pos, sizeReal, style, name); +// m_statbox = new wxStaticBox( parent, id, wxT(""), pos, sizeReal, style, name ); - return TRUE; + return true; }