]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/gdiobj.h
Move wxGetOSFHandle to include/wx/msw/private.h since it needs HANDLE anyway
[wxWidgets.git] / include / wx / msw / gdiobj.h
index 4b085fce52b1907c3da37b15bb9ae7084290f123..3d3d1b92093882344380f3dac6a3e967c0c51194 100644 (file)
@@ -36,15 +36,15 @@ class WXDLLEXPORT wxGDIRefData : public wxObjectRefData
 class WXDLLEXPORT wxGDIObject : public wxObject
 {
 public:
 class WXDLLEXPORT wxGDIObject : public wxObject
 {
 public:
-    wxGDIObject() { m_visible = FALSE; };
+    wxGDIObject() { m_visible = false; };
 
     // Creates the resource
 
     // Creates the resource
-    virtual bool RealizeResource() { return FALSE; };
+    virtual bool RealizeResource() { return false; };
 
     // Frees the resource
 
     // 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); }
 
 
     bool IsNull() const { return (m_refData == 0); }
 
@@ -55,7 +55,7 @@ public:
     virtual void SetVisible(bool v) { m_visible = v; }
 
 protected:
     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)
 
 private:
     DECLARE_DYNAMIC_CLASS(wxGDIObject)