]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/classic/statline.cpp
don't create non-existing groups in HasEntry()
[wxWidgets.git] / src / mac / classic / statline.cpp
index 52f3d407331cc40daa2fa89eaa99d9acd7821e42..cbc160d464dcb07cf9e15e3d14df1e00d3021a15 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        generic/statline.cpp
-// Purpose:     a generic wxStaticLine class
+// Name:        src/mac/classic/statline.cpp
+// Purpose:     wxStaticLine class
 // Author:      Vadim Zeitlin
 // Created:     28.06.99
 // Version:     $Id$
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
-    #pragma implementation "statline.h"
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
 #endif
 
 #include "wx/statline.h"
-#include "wx/statbox.h"
+
+#ifndef WX_PRECOMP
+    #include "wx/statbox.h"
+#endif
 
 // ============================================================================
 // implementation
@@ -48,7 +47,7 @@ bool wxStaticLine::Create( wxWindow *parent,
                            const wxString &name)
 {
     if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
-        return FALSE;
+        return false;
 
     // ok, this is ugly but it's better than nothing: use a thin static box to
     // emulate static line
@@ -57,5 +56,5 @@ bool wxStaticLine::Create( wxWindow *parent,
 
 //    m_statbox = new wxStaticBox(parent, id, wxT(""), pos, sizeReal, style, name);
 
-    return TRUE;
+    return true;
 }