From 8bfe2e0394938814e75839d08130bb60959a0aa4 Mon Sep 17 00:00:00 2001 From: Sergey POKHODENKO Date: Mon, 18 May 2015 15:46:50 +0300 Subject: [PATCH] PartSet_Module::createWidgetByType() use if/else sequence instead of separate if/if --- src/PartSet/PartSet_Module.cpp | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/PartSet/PartSet_Module.cpp b/src/PartSet/PartSet_Module.cpp index 4f4dd7fa1..e94be9298 100644 --- a/src/PartSet/PartSet_Module.cpp +++ b/src/PartSet/PartSet_Module.cpp @@ -472,29 +472,27 @@ ModuleBase_ModelWidget* PartSet_Module::createWidgetByType(const std::string& th aPointWgt->setSketch(mySketchMgr->activeSketch()); connect(aPointWgt, SIGNAL(vertexSelected()), this, SLOT(onVertexSelected())); aWgt = aPointWgt; - } if (theType == "point2ddistance") { + } else if (theType == "point2ddistance") { PartSet_WidgetPoint2dDistance* aDistanceWgt = new PartSet_WidgetPoint2dDistance(theParent, theWidgetApi, theParentId); aDistanceWgt->setWorkshop(aWorkshop); aDistanceWgt->setSketch(mySketchMgr->activeSketch()); aWgt = aDistanceWgt; - } if(theType == "point2dangle") { + } else if(theType == "point2dangle") { PartSet_WidgetPoint2dAngle* anAngleWgt = new PartSet_WidgetPoint2dAngle(theParent, theWidgetApi, theParentId); anAngleWgt->setWorkshop(aWorkshop); anAngleWgt->setSketch(mySketchMgr->activeSketch()); aWgt = anAngleWgt; - } - if (theType == "sketch_shape_selector") { + } else if (theType == "sketch_shape_selector") { PartSet_WidgetShapeSelector* aShapeSelectorWgt = new PartSet_WidgetShapeSelector(theParent, workshop(), theWidgetApi, theParentId); aShapeSelectorWgt->setSketcher(mySketchMgr->activeSketch()); aWgt = aShapeSelectorWgt; - } if (theType == "sketch_multi_selector") { + } else if (theType == "sketch_multi_selector") { PartSet_WidgetMultiSelector* aShapeSelectorWgt = new PartSet_WidgetMultiSelector(theParent, workshop(), theWidgetApi, theParentId); aShapeSelectorWgt->setSketcher(mySketchMgr->activeSketch()); aWgt = aShapeSelectorWgt; - } - if (theType == WDG_DOUBLEVALUE_EDITOR) { + } else if (theType == WDG_DOUBLEVALUE_EDITOR) { aWgt = new PartSet_WidgetEditor(theParent, workshop(), theWidgetApi, theParentId); } else if (theType == "export_file_selector") { aWgt = new PartSet_WidgetFileSelector(theParent, workshop(), theWidgetApi, theParentId); -- 2.39.2