Fixed bos#34419 - class member was not initialized

This commit is contained in:
mbs 2023-04-12 17:51:04 +01:00
parent 5a3993c7b0
commit ddba456747

View File

@ -40,7 +40,8 @@
vtkStandardNewMacro(GEOM_EdgeSource)
GEOM_EdgeSource::GEOM_EdgeSource() :
myIsVector(false)
myIsVector(false),
myIsVectorMode(false)
{
this->SetNumberOfInputPorts(0);
}