to grids with 0 rows _or_ 0 columns.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21277
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
DisableCellEditControl();
bool done = m_table->InsertRows( pos, numRows );
DisableCellEditControl();
bool done = m_table->InsertRows( pos, numRows );
- m_numRows = m_table->GetNumberRows();
return done;
// the table will have sent the results of the insert row
return done;
// the table will have sent the results of the insert row
if ( m_table )
{
bool done = m_table && m_table->AppendRows( numRows );
if ( m_table )
{
bool done = m_table && m_table->AppendRows( numRows );
- m_numRows = m_table->GetNumberRows();
return done;
// the table will have sent the results of the append row
// operation to this view object as a grid table message
return done;
// the table will have sent the results of the append row
// operation to this view object as a grid table message
DisableCellEditControl();
bool done = m_table->DeleteRows( pos, numRows );
DisableCellEditControl();
bool done = m_table->DeleteRows( pos, numRows );
- m_numRows = m_table->GetNumberRows();
return done;
// the table will have sent the results of the delete row
// operation to this view object as a grid table message
return done;
// the table will have sent the results of the delete row
// operation to this view object as a grid table message
DisableCellEditControl();
bool done = m_table->InsertCols( pos, numCols );
DisableCellEditControl();
bool done = m_table->InsertCols( pos, numCols );
- m_numCols = m_table->GetNumberCols();
return done;
// the table will have sent the results of the insert col
// operation to this view object as a grid table message
return done;
// the table will have sent the results of the insert col
// operation to this view object as a grid table message
if ( m_table )
{
bool done = m_table->AppendCols( numCols );
if ( m_table )
{
bool done = m_table->AppendCols( numCols );
- m_numCols = m_table->GetNumberCols();
return done;
// the table will have sent the results of the append col
// operation to this view object as a grid table message
return done;
// the table will have sent the results of the append col
// operation to this view object as a grid table message
DisableCellEditControl();
bool done = m_table->DeleteCols( pos, numCols );
DisableCellEditControl();
bool done = m_table->DeleteCols( pos, numCols );
- m_numCols = m_table->GetNumberCols();
return done;
// the table will have sent the results of the delete col
// operation to this view object as a grid table message
return done;
// the table will have sent the results of the delete col
// operation to this view object as a grid table message