From 949a328699083f210f745f081065145142658826 Mon Sep 17 00:00:00 2001 From: Gilles Depeyrot Date: Sat, 24 Aug 2002 19:45:04 +0000 Subject: [PATCH] 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 --- src/generic/gridg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)