Committing in .

Small problems/warnings solved:
  grid.cpp contained non-reachable code
  parser.y contained definitions for Alpha/True64 which should not be included
     for Alpha/VMS.

 Modified Files:
  Tag: WX_2_2_BRANCH
 	wxWindows/src/common/parser.y wxWindows/src/generic/grid.cpp
 ----------------------------------------------------------------------


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7406 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2000-05-16 11:30:25 +00:00
parent adf72aeaf7
commit 3ce78ed297
2 changed files with 5 additions and 2 deletions

View File

@@ -157,7 +157,7 @@ void yyerror(char *s)
*/
/* At least on alphaev6-dec-osf4.0e yywrap() must be #define'd */
#ifdef __ALPHA__
#if defined( __ALPHA__ ) && !defined( __VMS__ )
#ifndef yywrap
#define yywrap() 1
#endif

View File

@@ -3723,8 +3723,11 @@ bool wxGrid::Redimension( wxGridTableMessage& msg )
}
return TRUE;
}
result = TRUE;
#if 0
// There is no path to this code !!!!!!
result = TRUE;
break;
#endif
}
if (result && !GetBatchCount() )