X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1169a91932273bc84c23ed9dbd0a2da064d59d66..7996ff803885d4fc7196c0bfc855861c4364154a:/include/wx/msw/gdiobj.h diff --git a/include/wx/msw/gdiobj.h b/include/wx/msw/gdiobj.h index 494552d0d5..4be2edb8be 100644 --- a/include/wx/msw/gdiobj.h +++ b/include/wx/msw/gdiobj.h @@ -12,10 +12,6 @@ #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(); + 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)