]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mgl/gdiobj.h
fixing 'id' objc.h collisions, listbox rewrite
[wxWidgets.git] / include / wx / mgl / gdiobj.h
index 6281cee51dc40458010d803cedd256e58faa3a81..7e44a68909dc4e2cc3130d010a7429e6d2cee5ea 100644 (file)
@@ -1,21 +1,17 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        wx/msw/gdiobj.h
+// Name:        wx/mgl/gdiobj.h
 // Purpose:     wxGDIObject class: base class for other GDI classes
 // Author:      Julian Smart
 // Modified by:
 // Created:     01/02/97
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_GDIOBJ_H_
 #define _WX_GDIOBJ_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-    #pragma interface "gdiobj.h"
-#endif
-
 #include "wx/object.h"  // base class
 
 // ----------------------------------------------------------------------------
@@ -36,7 +32,7 @@ class WXDLLEXPORT wxGDIRefData : public wxObjectRefData
 class WXDLLEXPORT wxGDIObject : public wxObject
 {
 public:
-    wxGDIObject() { m_visible = FALSE; }
+    wxGDIObject() { m_visible = false; }
 
     virtual bool GetVisible() { return m_visible; }
     virtual void SetVisible( bool visible ) { m_visible = visible; }