X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FBlocksGUI%2FBlocksGUI_ExplodeDlg.cxx;h=802980698279688477ced74814802447948ac8df;hb=e7e908bf4c7c8bec141fe2d3b4a9924ddaea6c04;hp=d8ec38847ab6cfb4e7077f98ed865474c07a697f;hpb=9499b99fe2dcb53e1ea364f97986f8f432b04600;p=modules%2Fgeom.git diff --git a/src/BlocksGUI/BlocksGUI_ExplodeDlg.cxx b/src/BlocksGUI/BlocksGUI_ExplodeDlg.cxx index d8ec38847..802980698 100644 --- a/src/BlocksGUI/BlocksGUI_ExplodeDlg.cxx +++ b/src/BlocksGUI/BlocksGUI_ExplodeDlg.cxx @@ -107,7 +107,7 @@ BlocksGUI_ExplodeDlg::BlocksGUI_ExplodeDlg (GeometryGUI* theGeometryGUI, QWidget Layout1->addWidget(myGrp1, 1, 0); /***************************************************************/ - setHelpFileName("explode_on_blocks.htm"); + setHelpFileName("explode_on_blocks_operation_page.html"); Init(); } @@ -452,7 +452,8 @@ bool BlocksGUI_ExplodeDlg::execute (ObjectList& objects) ObjectList toRemoveFromEnggine; ObjectList::iterator anIter; for (anIter = myTmpObjs.begin(); anIter != myTmpObjs.end(); ++anIter) { - if (selected.contains(myGeomGUI->getApp()->orb()->object_to_string(*anIter))) + CORBA::String_var objStr = myGeomGUI->getApp()->orb()->object_to_string(*anIter); + if (selected.contains(QString(objStr.in()))) objects.push_back(*anIter); else toRemoveFromEnggine.push_back(*anIter);