Re-added GetSelectProperty() to wxPropertyGridManager

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56238 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli 2008-10-12 11:29:41 +00:00
parent f3932d5ac4
commit 4e7a37b4b0

View File

@ -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
{