changed some Remove()s into RemoveAt()s

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11974 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-10-13 21:34:08 +00:00
parent da2b4b7a57
commit 4403ced6fc

View File

@@ -3140,7 +3140,7 @@ bool wxGridStringTable::DeleteCols( size_t pos, size_t numCols )
{ {
for ( n = 0; n < numCols; n++ ) for ( n = 0; n < numCols; n++ )
{ {
m_data[row].Remove( pos ); m_data[row].RemoveAt( pos );
} }
} }
} }
@@ -4010,8 +4010,8 @@ bool wxGrid::Redimension( wxGridTableMessage& msg )
{ {
for ( i = 0; i < numRows; i++ ) for ( i = 0; i < numRows; i++ )
{ {
m_rowHeights.Remove( pos ); m_rowHeights.RemoveAt( pos );
m_rowBottoms.Remove( pos ); m_rowBottoms.RemoveAt( pos );
} }
int h = 0; int h = 0;
@@ -4146,8 +4146,8 @@ bool wxGrid::Redimension( wxGridTableMessage& msg )
{ {
for ( i = 0; i < numCols; i++ ) for ( i = 0; i < numCols; i++ )
{ {
m_colWidths.Remove( pos ); m_colWidths.RemoveAt( pos );
m_colRights.Remove( pos ); m_colRights.RemoveAt( pos );
} }
int w = 0; int w = 0;