]> git.saurik.com Git - wxWidgets.git/commitdiff
Added similar assignment operator as well
authorJaakko Salli <jaakko.salli@dnainternet.net>
Mon, 27 Oct 2008 16:50:45 +0000 (16:50 +0000)
committerJaakko Salli <jaakko.salli@dnainternet.net>
Mon, 27 Oct 2008 16:50:45 +0000 (16:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56528 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/propgrid/propgridpagestate.h

index 2bcbab1592171713493c3b8edf197838fa612218..64a2475d2d2d560e139654456c36950fe072c835 100644 (file)
@@ -297,6 +297,15 @@ public:
         Assign(other);
     }
 
+    /**
+        Additional assignment operator.
+    */
+    const wxPropertyGridConstIterator& operator=( const wxPropertyGridIterator& it )
+    {
+        Assign(it);
+        return *this;
+    }
+
 protected:
 };