]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/region.h
signned/unsigned fix
[wxWidgets.git] / include / wx / gtk / region.h
index b7fd0acf9e6df356de057fdd433635643e7a1afa..5adf4edeb9e4e1b006f9fdaf7f330ab30cbfd3a1 100644 (file)
@@ -71,13 +71,17 @@ public:
     }
 
     wxRegion( size_t n, const wxPoint *points, int fillStyle = wxODDEVEN_RULE );
-    virtual ~wxRegion();
+    ~wxRegion();
 
-    wxRegion( const wxRegion& r ) { Ref(r); }
-    wxRegion& operator = ( const wxRegion& r ) { Ref(r); return *this; }
+    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 );
+    bool operator != ( const wxRegion& region ) { return !(*this == region); }
 
     void Clear();