[wxVTK] wxVTK/src wxVTKRenderWindowInteractor.cxx,1.42,1.43
Brought to you by:
malat
From: Mathieu M. <ma...@us...> - 2008-10-20 11:23:10
|
Update of /cvsroot/wxvtk/wxVTK/src In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv26123 Modified Files: wxVTKRenderWindowInteractor.cxx Log Message: COMP: fix compilation on VTK 4.4 Index: wxVTKRenderWindowInteractor.cxx =================================================================== RCS file: /cvsroot/wxvtk/wxVTK/src/wxVTKRenderWindowInteractor.cxx,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** wxVTKRenderWindowInteractor.cxx 25 Aug 2008 00:27:39 -0000 1.42 --- wxVTKRenderWindowInteractor.cxx 20 Oct 2008 11:23:03 -0000 1.43 *************** *** 391,395 **** --- 391,398 ---- if( rwin ) { + #if VTK_MAJOR_VERSION > 4 || (VTK_MAJOR_VERSION == 4 && VTK_MINOR_VERSION > 4) + // Must be somewhere after VTK 4.4 rwin->UpdateGLRegion(); + #endif } #endif |