]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Avoid the warning message in a right case.
authornds <nds@opencascade.com>
Mon, 12 Oct 2015 09:26:36 +0000 (12:26 +0300)
committernds <nds@opencascade.com>
Mon, 12 Oct 2015 09:26:36 +0000 (12:26 +0300)
src/ModuleBase/ModuleBase_WidgetFactory.cpp

index 40a6c5a41b197c2faa3746c9f3e96b437ee9965b..bedab8cb3d1856681c88eb3140678b9c0f70e926 100644 (file)
@@ -153,7 +153,8 @@ ModuleBase_ModelWidget* ModuleBase_WidgetFactory::createWidgetByType(const std::
     result = new ModuleBase_WidgetToolbox(theParent, myWidgetApi, myParentId);
   } else if (theType == WDG_SWITCH) {
     result = new ModuleBase_WidgetSwitch(theParent, myWidgetApi, myParentId);
-  } else if (theType == WDG_TOOLBOX_BOX || theType == WDG_SWITCH_CASE) {
+  } else if (theType == WDG_TOOLBOX_BOX || theType == WDG_SWITCH_CASE ||
+             theType == NODE_VALIDATOR) {
     // Do nothing for "box" and "case"
     result = NULL;
   } else {