X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_ContextMenuMgr.cpp;h=494ecf28d011cf8dcf54d04dae64ac496ebd843e;hb=564df60468b225bbce2f1cc055299b47c3be9355;hp=80fdfad7f07ece1ba1b23243e578fdf41ad8d9e6;hpb=b6f8818a3de26b38025a19d9caaec51a4aa838af;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_ContextMenuMgr.cpp b/src/XGUI/XGUI_ContextMenuMgr.cpp index 80fdfad7f..494ecf28d 100644 --- a/src/XGUI/XGUI_ContextMenuMgr.cpp +++ b/src/XGUI/XGUI_ContextMenuMgr.cpp @@ -8,6 +8,7 @@ #include "XGUI_ViewerProxy.h" #include "XGUI_Selection.h" #include "XGUI_SalomeConnector.h" +#include "XGUI_Tools.h" #include @@ -154,18 +155,8 @@ QMenu* XGUI_ContextMenuMgr::objectBrowserMenu() const bool hasResult = false; bool hasFeature = false; bool hasParameter = false; - foreach(ObjectPtr aObj, aObjects) - { - FeaturePtr aFeature = std::dynamic_pointer_cast(aObj); - ResultPtr aResult = std::dynamic_pointer_cast(aObj); - ResultParameterPtr aConstruction = std::dynamic_pointer_cast(aResult); - - hasResult = (aResult.get() != NULL); - hasFeature = (aFeature.get() != NULL); - hasParameter = (aConstruction.get() != NULL); - if (hasFeature && hasResult && hasParameter) - break; - } + XGUI_Tools::checkObjects(aObjects, hasResult, hasFeature, hasParameter); + //Process Feature if (aSelected == 1) { ObjectPtr aObject = aObjects.first();