]> git.saurik.com Git - wxWidgets.git/commitdiff
improved conditional compilation since generic grid and new grid are exclusive
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Sat, 24 Aug 2002 19:45:04 +0000 (19:45 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Sat, 24 Aug 2002 19:45:04 +0000 (19:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16743 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/gridg.cpp

index 4c33a1a32ad2b7d1be9294b9912ad6fab3580f94..9de3b1897aff15e5bda588a991056ae468525bf1 100644 (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)