Update for bug IPAL19949.

This commit is contained in:
skl 2008-06-19 05:27:13 +00:00
parent 4e75f03828
commit fa69d46a99
2 changed files with 8 additions and 8 deletions

View File

@ -476,7 +476,7 @@ msgstr "Step U :"
#ShapesOnShape #ShapesOnShape
msgid "GEOM_SHAPES_ON_SHAPE" msgid "GEOM_SHAPES_ON_SHAPE"
msgstr "Shapes_on_shape" msgstr "Get shapes on shape"
msgid "GEOM_SHAPES_ON_SHAPE_ESHAPE" msgid "GEOM_SHAPES_ON_SHAPE_ESHAPE"
msgstr "Shape for exploding" msgstr "Shape for exploding"
msgid "GEOM_SHAPES_ON_SHAPE_CSHAPE" msgid "GEOM_SHAPES_ON_SHAPE_CSHAPE"

View File

@ -98,9 +98,11 @@ void OperationGUI_GetShapesOnShapeDlg::Init()
{ {
/* type for sub shape selection */ /* type for sub shape selection */
GroupPoints->ComboBox1->insertItem(tr("GEOM_RECONSTRUCTION_LIMIT_SOLID")); GroupPoints->ComboBox1->insertItem(tr("GEOM_RECONSTRUCTION_LIMIT_SOLID"));
GroupPoints->ComboBox1->insertItem(tr("GEOM_RECONSTRUCTION_LIMIT_SHELL")); // commented by skl for IPAL19949 - finder isn't allowed such type
//GroupPoints->ComboBox1->insertItem(tr("GEOM_RECONSTRUCTION_LIMIT_SHELL"));
GroupPoints->ComboBox1->insertItem(tr("GEOM_RECONSTRUCTION_LIMIT_FACE")); GroupPoints->ComboBox1->insertItem(tr("GEOM_RECONSTRUCTION_LIMIT_FACE"));
GroupPoints->ComboBox1->insertItem(tr("GEOM_RECONSTRUCTION_LIMIT_WIRE")); // commented by skl for IPAL19949 - finder isn't allowed such type
//GroupPoints->ComboBox1->insertItem(tr("GEOM_RECONSTRUCTION_LIMIT_WIRE"));
GroupPoints->ComboBox1->insertItem(tr("GEOM_RECONSTRUCTION_LIMIT_EDGE")); GroupPoints->ComboBox1->insertItem(tr("GEOM_RECONSTRUCTION_LIMIT_EDGE"));
GroupPoints->ComboBox1->insertItem(tr("GEOM_RECONSTRUCTION_LIMIT_VERTEX")); GroupPoints->ComboBox1->insertItem(tr("GEOM_RECONSTRUCTION_LIMIT_VERTEX"));
@ -294,11 +296,9 @@ bool OperationGUI_GetShapesOnShapeDlg::execute( ObjectList& objects )
switch (aLimit) switch (aLimit)
{ {
case 0: aLimit = GEOM::SOLID ; break; case 0: aLimit = GEOM::SOLID ; break;
case 1: aLimit = GEOM::SHELL ; break; case 1: aLimit = GEOM::FACE ; break;
case 2: aLimit = GEOM::FACE ; break; case 2: aLimit = GEOM::EDGE ; break;
case 3: aLimit = GEOM::WIRE ; break; case 3: aLimit = GEOM::VERTEX; break;
case 4: aLimit = GEOM::EDGE ; break;
case 5: aLimit = GEOM::VERTEX; break;
default: aLimit = GEOM::SHAPE ; default: aLimit = GEOM::SHAPE ;
} }