X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e1d63b79352db5290a9f86428d193bd6a08ef32f..dd9f8b6bb6935360a8271dc3e8749fb026b601a8:/include/wx/palmos/enhmeta.h?ds=sidebyside diff --git a/include/wx/palmos/enhmeta.h b/include/wx/palmos/enhmeta.h index 9047b91172..1501435442 100644 --- a/include/wx/palmos/enhmeta.h +++ b/include/wx/palmos/enhmeta.h @@ -12,11 +12,8 @@ #ifndef _WX_PALMOS_ENHMETA_H_ #define _WX_PALMOS_ENHMETA_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "enhmeta.h" -#endif - #include "wx/dc.h" +#include "wx/gdiobj.h" #if wxUSE_DRAG_AND_DROP #include "wx/dataobj.h" @@ -26,7 +23,7 @@ // wxEnhMetaFile: encapsulation of Win32 HENHMETAFILE // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxEnhMetaFile : public wxObject +class WXDLLEXPORT wxEnhMetaFile : public wxGDIObject { public: wxEnhMetaFile(const wxString& file = wxEmptyString) : m_filename(file) @@ -43,7 +40,7 @@ public: bool Play(wxDC *dc, wxRect *rectBound = (wxRect *)NULL); // accessors - bool Ok() const { return m_hMF != 0; } + virtual bool IsOk() const { return m_hMF != 0; } wxSize GetSize() const; int GetWidth() const { return GetSize().x; }