From: Gilles Depeyrot Date: Sat, 24 Aug 2002 19:45:04 +0000 (+0000) Subject: improved conditional compilation since generic grid and new grid are exclusive X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/949a328699083f210f745f081065145142658826 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 --- diff --git a/src/generic/gridg.cpp b/src/generic/gridg.cpp index 4c33a1a32a..9de3b1897a 100644 --- a/src/generic/gridg.cpp +++ b/src/generic/gridg.cpp @@ -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)