From fb81add0ff497a6bc35a1714ee8bf0c194435553 Mon Sep 17 00:00:00 2001 From: vsv Date: Tue, 16 Nov 2010 13:38:05 +0000 Subject: [PATCH] *** empty log message *** --- src/SALOME_PY/SalomePy.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SALOME_PY/SalomePy.cxx b/src/SALOME_PY/SalomePy.cxx index 5fbdab8b2..981902e00 100755 --- a/src/SALOME_PY/SalomePy.cxx +++ b/src/SALOME_PY/SalomePy.cxx @@ -206,7 +206,7 @@ public: ::GetVTKViewWindow( myCreate ? __Create : __FindOrCreate ); if( aVTKViewWindow && aPyClass ) { vtkRenderer* aVTKObject = aVTKViewWindow->getRenderer(); - myResult = PyVTKObject_New( aPyClass, aVTKObject ); + myResult = PyVTKObject_New( aPyClass, NULL, aVTKObject ); } } }; @@ -255,7 +255,7 @@ public: ::GetVTKViewWindow( myCreate ? __Create : __FindOrCreate ); if( aVTKViewWindow && aPyClass ) { vtkRenderWindow* aVTKObject = aVTKViewWindow->getRenderWindow(); - myResult = PyVTKObject_New( aPyClass, aVTKObject ); + myResult = PyVTKObject_New( aPyClass, NULL, aVTKObject ); } } }; @@ -304,7 +304,7 @@ public: ::GetVTKViewWindow( myCreate ? __Create : __FindOrCreate ); if( aVTKViewWindow && aPyClass ) { vtkRenderWindowInteractor* aVTKObject = aVTKViewWindow->getInteractor(); - myResult = PyVTKObject_New( aPyClass, aVTKObject ); + myResult = PyVTKObject_New( aPyClass, NULL, aVTKObject ); } } }; -- 2.39.2