git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56270
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void Empty();
// Puts correct indexes to children
void Empty();
// Puts correct indexes to children
- void FixIndecesOfChildren( unsigned int starthere = 0 );
+ void FixIndicesOfChildren( unsigned int starthere = 0 );
#ifndef SWIG
// Returns wxPropertyGridPageState in which this property resides.
#ifndef SWIG
// Returns wxPropertyGridPageState in which this property resides.
else
{
m_children.insert( m_children.begin()+index, prop);
else
{
m_children.insert( m_children.begin()+index, prop);
- if ( correct_mode ) FixIndecesOfChildren( index );
+ if ( correct_mode ) FixIndicesOfChildren( index );
-void wxPGProperty::FixIndecesOfChildren( unsigned int starthere )
+void wxPGProperty::FixIndicesOfChildren( unsigned int starthere )
{
size_t i;
for ( i=starthere;i<GetChildCount();i++)
{
size_t i;
for ( i=starthere;i<GetChildCount();i++)
- pwc->FixIndecesOfChildren();
+ pwc->FixIndicesOfChildren();
}
if ( IsInNonCatMode() )
}
if ( IsInNonCatMode() )
- m_abcArray->FixIndecesOfChildren();
+ m_abcArray->FixIndicesOfChildren();
// categorized mode - categorized array
wxArrayPGProperty& parentsChildren = item->m_parent->m_children;
parentsChildren.erase( parentsChildren.begin() + indinparent );
// categorized mode - categorized array
wxArrayPGProperty& parentsChildren = item->m_parent->m_children;
parentsChildren.erase( parentsChildren.begin() + indinparent );
- item->m_parent->FixIndecesOfChildren();
+ item->m_parent->FixIndicesOfChildren();
wxASSERT( item->m_parent == m_abcArray );
wxArrayPGProperty& parentsChildren = item->m_parent->m_children;
parentsChildren.erase(parentsChildren.begin() + indinparent);
wxASSERT( item->m_parent == m_abcArray );
wxArrayPGProperty& parentsChildren = item->m_parent->m_children;
parentsChildren.erase(parentsChildren.begin() + indinparent);
- item->m_parent->FixIndecesOfChildren(indinparent);
+ item->m_parent->FixIndicesOfChildren(indinparent);