]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/statline.cpp
make sure we catch invalid control refs better
[wxWidgets.git] / src / mac / carbon / statline.cpp
index dbc34aaa7328d5be69fad7b144ab130f7c962ac4..62abfd106afd947fe72679132024c72ae50d2c3f 100644 (file)
@@ -1,26 +1,13 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        generic/statline.cpp
-// Purpose:     a generic wxStaticLine class
+// Name:        src/mac/carbon/statline.cpp
+// Purpose:     wxStaticLine class
 // Author:      Vadim Zeitlin
 // Created:     28.06.99
 // Version:     $Id$
 // Copyright:   (c) 1998 Vadim Zeitlin
-// Licence:     wxWidgets licence
+// 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__
 #endif
 
 #include "wx/statline.h"
-#include "wx/statbox.h"
 
-// ============================================================================
-// implementation
-// ============================================================================
+#ifndef WX_PRECOMP
+    #include "wx/statbox.h"
+#endif
 
 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;
 }