From: Sergey POKHODENKO Date: Mon, 18 May 2015 12:46:50 +0000 (+0300) Subject: PartSet_Module::createWidgetByType() use if/else sequence instead of separate if/if X-Git-Tag: V_1.2.0~145^2~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=8bfe2e0394938814e75839d08130bb60959a0aa4;p=modules%2Fshaper.git PartSet_Module::createWidgetByType() use if/else sequence instead of separate if/if --- 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);