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

@@ -471,13 +471,12 @@ class ManualAlignment::Private {
public:
SoSeparator * picksepLeft;
SoSeparator * picksepRight;
SoNodeSensor* sensorCam1;
SoNodeSensor* sensorCam2;
SoNodeSensor* sensorCam1{nullptr};
SoNodeSensor* sensorCam2{nullptr};
SbRotation rot_cam1, rot_cam2;
SbVec3f pos_cam1, pos_cam2;
Private()
: sensorCam1(nullptr), sensorCam2(nullptr)
{
// left view
picksepLeft = new SoSeparator;