From 08d87644a9d677726e48efc5eb7bfb51102416e8 Mon Sep 17 00:00:00 2001 From: Paddle Date: Wed, 12 Apr 2023 17:49:54 +0200 Subject: [PATCH] Task image. replace {} with () in the ctor for consistency --- src/Gui/TaskView/TaskImage.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Gui/TaskView/TaskImage.cpp b/src/Gui/TaskView/TaskImage.cpp index 15125a58c4..1a80089090 100644 --- a/src/Gui/TaskView/TaskImage.cpp +++ b/src/Gui/TaskView/TaskImage.cpp @@ -404,12 +404,12 @@ struct NodeData { }; InteractiveScale::InteractiveScale(View3DInventorViewer* view, ViewProvider* vp, Base::Placement plc) - : active{false} - , allowOutsideImage{false} - , placement{plc} - , viewer{view} - , viewProv{vp} - , midPoint{SbVec3f(0,0,0)} + : active(false) + , allowOutsideImage(false) + , placement(plc) + , viewer(view) + , viewProv(vp) + , midPoint(SbVec3f(0,0,0)) { root = new SoAnnotation; root->ref();