]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/gdiobj.h
put wxUSE_DATAVIEWCTRL in alphabetical order
[wxWidgets.git] / include / wx / msw / gdiobj.h
index 03dd0814fc59d3018e90095f6b3247213438c2d3..4be2edb8be8dc379b57e256a73d71bdebe1cd0d6 100644 (file)
@@ -6,16 +6,12 @@
 // 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,15 +32,15 @@ class WXDLLEXPORT wxGDIRefData : public wxObjectRefData
 class WXDLLEXPORT wxGDIObject : public wxObject
 {
 public:
-    wxGDIObject() { m_visible = FALSE; };
+    wxGDIObject() { m_visible = false; };
 
     // Creates the resource
-    virtual bool RealizeResource() { return FALSE; };
+    virtual bool RealizeResource() { return false; };
 
     // Frees the resource
-    virtual bool FreeResource(bool WXUNUSED(force) = FALSE) { return FALSE; }
+    virtual bool FreeResource(bool WXUNUSED(force) = false) { return false; }
 
-    virtual bool IsFree() const { return FALSE; }
+    virtual bool IsFree() const { return false; }
 
     bool IsNull() const { return (m_refData == 0); }
 
@@ -55,7 +51,7 @@ public:
     virtual void SetVisible(bool v) { m_visible = v; }
 
 protected:
-    bool m_visible; // TRUE only if we should delete this object ourselves
+    bool m_visible; // true only if we should delete this object ourselves
 
 private:
     DECLARE_DYNAMIC_CLASS(wxGDIObject)