]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/metafile.h
Fix for mistake with const for non pointer/reference with corrections in documentation.
[wxWidgets.git] / include / wx / mac / carbon / metafile.h
index 8dff33be653a789522be5c488f946f509399c88e..7bf91023d10c7dab99c5a05fed7cd426244400e6 100644 (file)
@@ -15,7 +15,6 @@
 #ifndef _WX_METAFIILE_H_
 #define _WX_METAFIILE_H_
 
-#if wxUSE_METAFILE
 #include "wx/dc.h"
 #include "wx/gdiobj.h"
 
@@ -65,8 +64,8 @@ public:
 
     // Operators
     inline wxMetafile& operator = (const wxMetafile& metafile) { if (*this == metafile) return (*this); Ref(metafile); return *this; }
-    inline bool operator == (const wxMetafile& metafile) { return m_refData == metafile.m_refData; }
-    inline bool operator != (const wxMetafile& metafile) { return m_refData != metafile.m_refData; }
+    inline bool operator == (const wxMetafile& metafile) const { return m_refData == metafile.m_refData; }
+    inline bool operator != (const wxMetafile& metafile) const { return m_refData != metafile.m_refData; }
 
 protected:
 };
@@ -149,8 +148,5 @@ protected:
 };
 #endif
 
-#endif // wxUSE_METAFILE
-
-
 #endif
     // _WX_METAFIILE_H_