]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/region.cpp
correct a bug in the MSW code using wxMask
[wxWidgets.git] / src / gtk / region.cpp
index 5e199e76a0c958f8a27f24f3c69f096aed083c99..a01289855ba0c4a3160944287dd7332b8e38a786 100644 (file)
@@ -114,6 +114,16 @@ wxRegion::~wxRegion(void)
 {
 }
 
+bool wxRegion::operator == ( const wxRegion& region )
+{
+  return m_refData == region.m_refData; 
+}
+
+bool wxRegion::operator != ( const wxRegion& region )
+{
+  return m_refData != region.m_refData; 
+}
+
 void wxRegion::Clear(void)
 {
   UnRef();