From c724444f7e612f244cdb97bfa9e28177d11d046d Mon Sep 17 00:00:00 2001 From: Jaakko Salli Date: Mon, 27 Oct 2008 16:50:45 +0000 Subject: [PATCH] Added similar assignment operator as well git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56528 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/propgrid/propgridpagestate.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/wx/propgrid/propgridpagestate.h b/include/wx/propgrid/propgridpagestate.h index 2bcbab1592..64a2475d2d 100644 --- a/include/wx/propgrid/propgridpagestate.h +++ b/include/wx/propgrid/propgridpagestate.h @@ -297,6 +297,15 @@ public: Assign(other); } + /** + Additional assignment operator. + */ + const wxPropertyGridConstIterator& operator=( const wxPropertyGridIterator& it ) + { + Assign(it); + return *this; + } + protected: }; -- 2.47.2