[wxVTK] wxVTK/src wxVTKRenderWindowInteractor.cxx,1.43,1.44
Brought to you by:
malat
From: Mathieu M. <ma...@us...> - 2008-10-20 11:24:18
|
Update of /cvsroot/wxvtk/wxVTK/src In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv26197 Modified Files: wxVTKRenderWindowInteractor.cxx Log Message: COMP: fix compilation on VTK 4.4 (mouse wheel) Index: wxVTKRenderWindowInteractor.cxx =================================================================== RCS file: /cvsroot/wxvtk/wxVTK/src/wxVTKRenderWindowInteractor.cxx,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** wxVTKRenderWindowInteractor.cxx 20 Oct 2008 11:23:03 -0000 1.43 --- wxVTKRenderWindowInteractor.cxx 20 Oct 2008 11:24:06 -0000 1.44 *************** *** 695,699 **** { // Mouse wheel was only added after VTK 4.4 (I think...) ! #if VTK_MAJOR_VERSION > 4 || (VTK_MAJOR_VERSION == 4 && VTK_MINOR_VERSION > 2) // new style //Set vtk event information ... The numebr of wheel rotations is stored in --- 695,699 ---- { // Mouse wheel was only added after VTK 4.4 (I think...) ! #if VTK_MAJOR_VERSION > 4 || (VTK_MAJOR_VERSION == 4 && VTK_MINOR_VERSION > 4) // new style //Set vtk event information ... The numebr of wheel rotations is stored in |