Salome HOME
Fixed bos#34419 - class member was not initialized
authormbs <martin.bernhard@opencascade.com>
Wed, 12 Apr 2023 16:51:04 +0000 (17:51 +0100)
committermbs <martin.bernhard@opencascade.com>
Wed, 12 Apr 2023 16:51:04 +0000 (17:51 +0100)
src/OCC2VTK/GEOM_EdgeSource.cxx

index 06a1f68f9e5f8ab715597be58fea1eb9e11672aa..df75c684f342aee14480379ef30ea3c70a6635b1 100644 (file)
@@ -40,7 +40,8 @@
 vtkStandardNewMacro(GEOM_EdgeSource)
  
 GEOM_EdgeSource::GEOM_EdgeSource() :
-  myIsVector(false)
+  myIsVector(false),
+  myIsVectorMode(false)
 { 
   this->SetNumberOfInputPorts(0);
 }