git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38863
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
if (m_ownTable)
{
- wxGridTableBase *t=m_table;
- m_table=0;
+ wxGridTableBase *t = m_table;
+ m_table = NULL;
delete t;
}
delete m_selection;
- m_table = 0;
- m_selection = 0;
+ m_table = NULL;
+ m_selection = NULL;
m_numRows = 0;
m_numCols = 0;
}
}
// The behaviour of this function depends on the grid table class
-// Clear() function. For the default wxGridStringTable class the
+// Clear() function. For the default wxGridStringTable class the
// behavious is to replace all cell contents with wxEmptyString but
// not to change the number of rows or cols.
//
DisableCellEditControl();
m_table->Clear();
- if ( !GetBatchCount()
+ if (!GetBatchCount())
m_gridWin->Refresh();
}
}