X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1de8d512b7c844d67b2dab36addc89868e68c9b6..a2c5db764c8450dda6e87fe58917b0a00ec2c74f:/include/wx/gdiobj.h?ds=sidebyside diff --git a/include/wx/gdiobj.h b/include/wx/gdiobj.h index 5c9747694a..2464f78827 100644 --- a/include/wx/gdiobj.h +++ b/include/wx/gdiobj.h @@ -20,7 +20,7 @@ // the same native GDI object // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxGDIRefData: public wxObjectRefData { }; +class WXDLLIMPEXP_FWD_CORE wxGDIRefData: public wxObjectRefData { }; // ---------------------------------------------------------------------------- // wxGDIObject @@ -31,7 +31,7 @@ class WXDLLIMPEXP_CORE wxGDIObject: public wxObject public: bool IsNull() const { return m_refData == NULL; } -#if defined(__WXMSW__) || defined(__WXOS2__) || defined(__WXPALMOS__) +#if defined(__WXMSW__) || defined(__WXPM__) || defined(__WXPALMOS__) // Creates the resource virtual bool RealizeResource() { return false; } @@ -42,7 +42,7 @@ public: // Returns handle. virtual WXHANDLE GetResourceHandle() const { return 0; } -#endif // defined(__WXMSW__) || defined(__WXOS2__) +#endif // defined(__WXMSW__) || defined(__WXPM__) DECLARE_DYNAMIC_CLASS(wxGDIObject) };