]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
*** empty log message *** BR_PV310_PORTING
authorvsv <vsv@opencascade.com>
Tue, 16 Nov 2010 13:38:05 +0000 (13:38 +0000)
committervsv <vsv@opencascade.com>
Tue, 16 Nov 2010 13:38:05 +0000 (13:38 +0000)
src/SALOME_PY/SalomePy.cxx

index 5fbdab8b2e5df14ea9bb6ab7f4c63ec4c52392fc..981902e00b9b990213da11aadc81701e08328815 100755 (executable)
@@ -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 );
     }
   }
 };