]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/metafile.h
Use Get*Box instead Get*Region if you are asking about position and size. And it...
[wxWidgets.git] / include / wx / os2 / metafile.h
index c10cd42933df31f5e5e20b0529bc40a0136a5c46..996c190f8320cab0d1dbd8e8d3b9e2cae64fb693 100644 (file)
@@ -74,9 +74,12 @@ class WXDLLEXPORT wxMetafile: public wxGDIObject
   void SetWindowsMappingMode(int mm);
 
   // 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 wxMetafile& operator = (const wxMetafile& metafile)
+      { if (*this == metafile) return (*this); Ref(metafile); return *this; }
+  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:
 };