improved conditional compilation since generic grid and new grid are exclusive

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16743 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot 2002-08-24 19:45:04 +00:00
parent 3da38569d1
commit 949a328699

View File

@ -25,7 +25,7 @@
#pragma hdrstop
#endif
#if wxUSE_GRID
#if wxUSE_GRID && !(wxUSE_NEW_GRID)
#ifndef WX_PRECOMP
#include "wx/utils.h"
@ -2854,4 +2854,4 @@ void *wxGenericGrid::GetCellData(int row, int col)
return rc;
}
#endif // wxUSE_GRID
#endif // wxUSE_GRID && !(wxUSE_NEW_GRID)