don't make wxGridTableBase::IsEmptyCell() pure virtual, there is really no point to force all derived table classes to implement it when it has a default implementation which works just fine in 99% of cases
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57049 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -3830,15 +3830,6 @@ void wxGridStringTable::SetValue( int row, int col, const wxString& value )
|
|||||||
m_data[row][col] = value;
|
m_data[row][col] = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wxGridStringTable::IsEmptyCell( int row, int col )
|
|
||||||
{
|
|
||||||
wxCHECK_MSG( (row < GetNumberRows()) && (col < GetNumberCols()),
|
|
||||||
true,
|
|
||||||
_T("invalid row or column index in wxGridStringTable") );
|
|
||||||
|
|
||||||
return (m_data[row][col] == wxEmptyString);
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxGridStringTable::Clear()
|
void wxGridStringTable::Clear()
|
||||||
{
|
{
|
||||||
int row, col;
|
int row, col;
|
||||||
|
Reference in New Issue
Block a user