X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9b6dbb09746f8f5ee0549a2ff39ae0ac4c725898..5180055b697078e8c6ec7db485f1f1bfa3e91abd:/include/wx/motif/gdiobj.h diff --git a/include/wx/motif/gdiobj.h b/include/wx/motif/gdiobj.h index c25575dffc..b532e20fd0 100644 --- a/include/wx/motif/gdiobj.h +++ b/include/wx/motif/gdiobj.h @@ -14,35 +14,35 @@ #include "wx/object.h" -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #pragma interface "gdiobj.h" #endif class WXDLLEXPORT wxGDIRefData: public wxObjectRefData { public: inline wxGDIRefData() - { - } + { + } }; #define M_GDIDATA ((wxGDIRefData *)m_refData) class WXDLLEXPORT wxGDIObject: public wxObject { -DECLARE_DYNAMIC_CLASS(wxGDIObject) - public: - inline wxGDIObject() { m_visible = FALSE; }; - inline ~wxGDIObject() {}; - - inline bool IsNull() const { return (m_refData == 0); } - - virtual bool GetVisible() { return m_visible; } - virtual void SetVisible(bool v) { m_visible = v; } - + DECLARE_DYNAMIC_CLASS(wxGDIObject) +public: + inline wxGDIObject() { m_visible = FALSE; }; + inline ~wxGDIObject() {}; + + inline bool IsNull() const { return (m_refData == 0); } + + virtual bool GetVisible() { return m_visible; } + virtual void SetVisible(bool v) { m_visible = v; } + protected: - bool m_visible; // Can a pointer to this object be safely taken? - // - only if created within FindOrCreate... + bool m_visible; // Can a pointer to this object be safely taken? + // - only if created within FindOrCreate... }; #endif - // _WX_GDIOBJ_H_ +// _WX_GDIOBJ_H_