Gui: modernize C++: use default member init

This commit is contained in:
wmayer
2023-08-23 16:29:19 +02:00
committed by wwmayer
parent 1cf1a90a17
commit 6beace8da6
79 changed files with 220 additions and 325 deletions

View File

@@ -376,10 +376,7 @@ void SoFCVectorizeSVGAction::initClass()
SO_ACTION_INIT_CLASS(SoFCVectorizeSVGAction, SoVectorizeAction);
}
SoFCVectorizeSVGAction::SoFCVectorizeSVGAction() :
m_backgroundState(true),
m_lineWidth(1.0),
m_usemm(false)
SoFCVectorizeSVGAction::SoFCVectorizeSVGAction()
{
SO_ACTION_CONSTRUCTOR(SoFCVectorizeSVGAction);
this->setOutput(new SoSVGVectorOutput);