X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9288df34010ff5dfab0e618081945e6729e2ebf6..8067ee1174ded3b3ab4127ed2e00e586b855a828:/interface/wx/propgrid/manager.h diff --git a/interface/wx/propgrid/manager.h b/interface/wx/propgrid/manager.h index 5d926bef75..112597996b 100644 --- a/interface/wx/propgrid/manager.h +++ b/interface/wx/propgrid/manager.h @@ -2,7 +2,7 @@ // Name: manager.h // Purpose: interface of wxPropertyGridManager // Author: wxWidgets team -// RCS-ID: $Id: +// RCS-ID: $Id$ // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// @@ -228,13 +228,6 @@ public: const wxBitmap& bmp = wxPG_NULL_BITMAP, wxPropertyGridPage* pageObj = NULL ); - void ClearModifiedStatus( wxPGPropArg id ); - - void ClearModifiedStatus() - { - m_pPropGrid->ClearModifiedStatus(); - } - /** Deletes all properties and all pages. */ @@ -290,30 +283,6 @@ public: */ bool EnsureVisible( wxPGPropArg id ); - /** - Returns number of children of the root property of the selected page. - */ - size_t GetChildrenCount() - { - return GetChildrenCount( m_pPropGrid->m_pState->m_properties ); - } - - /** - Returns number of children of the root property of given page. - */ - size_t GetChildrenCount( int pageIndex ); - - /** - Returns number of children for the property. - - NB: Cannot be in container methods class due to name hiding. - */ - size_t GetChildrenCount( wxPGPropArg id ) const - { - wxPG_PROP_ARG_CALL_PROLOG_RETVAL(0) - return p->GetChildCount(); - } - /** Returns number of columns on given page. By the default, returns number of columns on current page.