From: Jaakko Salli Date: Sun, 12 Oct 2008 11:29:41 +0000 (+0000) Subject: Re-added GetSelectProperty() to wxPropertyGridManager X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4e7a37b4b048689e934f02fa20bc10176bd9787a?ds=sidebyside Re-added GetSelectProperty() to wxPropertyGridManager git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56238 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/propgrid/manager.h b/include/wx/propgrid/manager.h index 6ad03bbe3c..5459534ea7 100644 --- a/include/wx/propgrid/manager.h +++ b/include/wx/propgrid/manager.h @@ -466,6 +466,12 @@ public: /** Returns index to currently selected page. */ int GetSelectedPage() const { return m_selPage; } + /** Alias for GetSelection(). */ + wxPGProperty* GetSelectedProperty() const + { + return GetSelection(); + } + /** Shortcut for GetGrid()->GetSelection(). */ wxPGProperty* GetSelection() const {