bug fix: operator extensions copy constructor is missing copy for active flag

Signed-off-by: Thorsten Liebig <Thorsten.Liebig@gmx.de>
This commit is contained in:
Thorsten Liebig 2013-03-27 11:54:16 +01:00
parent 0ba70f0a27
commit bd0df58253

View File

@ -39,6 +39,7 @@ Operator_Extension::Operator_Extension(Operator* op, Operator_Extension* op_ext)
UNUSED(op_ext);
m_Op = op;
m_Op_Cyl = dynamic_cast<Operator_Cylinder*>(op);
m_Active = op_ext->m_Active;
if (m_Op_Cyl)
m_CC_R0_included=m_Op_Cyl->GetR0Included();
}