]> git.saurik.com Git - wxWidgets.git/commitdiff
don't make wxGridTableBase::IsEmptyCell() pure virtual, there is really no point...
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 1 Dec 2008 00:13:21 +0000 (00:13 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 1 Dec 2008 00:13:21 +0000 (00:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57049 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/grid.cpp

index 491b2c21bd7526a5065ebaa2b9c7fc4f51c861c9..71fe9ec9a9aea9bffbae0efc53cae386b6c88ed6 100644 (file)
@@ -3830,15 +3830,6 @@ void wxGridStringTable::SetValue( int row, int col, const wxString& 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()
 {
     int row, col;