]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/region.h
use wxEventType coherently with the docs
[wxWidgets.git] / interface / wx / region.h
index ac00b3a9ceea989ae62388bea0d12f8c98fd7f58..5d190a430d3fbca841e009c0c7670cf983c68a79 100644 (file)
@@ -198,12 +198,12 @@ public:
         See @ref overview_refcount_destruct "reference-counted object destruction" for
         more info.
     */
-    ~wxRegion();
+    virtual ~wxRegion();
 
     /**
         Clears the current region.
     */
-    void Clear();
+    virtual void Clear();
 
     /**
         Returns a value indicating whether the given point is contained within the region.
@@ -291,7 +291,7 @@ public:
     /**
         Returns @true if the region is empty, @false otherwise.
     */
-    bool IsEmpty() const;
+    virtual bool IsEmpty() const;
 
     /**
         Returns @true if the region is equal to, i.e. covers the same area as,
@@ -427,7 +427,7 @@ public:
     /**
         Assignment operator, using @ref overview_refcount.
     */
-    void operator =(const wxRegion& region);
+    wxRegion& operator=(const wxRegion& region);
 };
 
 /**