]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/region.h
fix printf() argument type in GetOsInfo()
[wxWidgets.git] / include / wx / gtk1 / region.h
index fa396d31e1e5f17fbe2271fc1052a65cbb672e16..12a5b207bf4f397f2d5c60c46bd03a97f45ed856 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        wx/gtk/region.h
+// Name:        wx/gtk1/region.h
 // Purpose:
 // Author:      Robert Roebling
 // Id:          $Id$
@@ -24,13 +24,6 @@ class WXDLLIMPEXP_CORE wxRegion;
 // constants
 //-----------------------------------------------------------------------------
 
-enum wxRegionContain
-{
-    wxOutRegion = 0,
-    wxPartRegion = 1,
-    wxInRegion = 2
-};
-
 // So far, for internal use only
 enum wxRegionOp
 {
@@ -80,15 +73,10 @@ public:
 
     ~wxRegion();
 
-    wxRegion( const wxRegion& region )
-        : wxGDIObject()
-        { Ref(region); }
-    wxRegion& operator = ( const wxRegion& region ) { Ref(region); return *this; }
-
     bool Ok() const { return m_refData != NULL; }
 
-    bool operator == ( const wxRegion& region );
-    bool operator != ( const wxRegion& region ) { return !(*this == region); }
+    bool operator == ( const wxRegion& region ) const;
+    bool operator != ( const wxRegion& region ) const { return !(*this == region); }
 
     void Clear();