Salome HOME
0021359: [CEA] Mesh information
authorvsr <vsr@opencascade.com>
Wed, 5 Oct 2011 08:39:05 +0000 (08:39 +0000)
committervsr <vsr@opencascade.com>
Wed, 5 Oct 2011 08:39:05 +0000 (08:39 +0000)
Additional minor changes: fix bad layout; fix wrong statement

src/SMESHGUI/SMESHGUI_MeshInfo.cxx

index 03873945af87230a597fe334740af1f6f8a131b6..a4126452c5eafbdaf9a98376f611fc74250a5ba1 100644 (file)
@@ -1359,7 +1359,7 @@ void SMESHGUI_AddInfo::meshInfo( SMESH::SMESH_Mesh_ptr mesh, QTreeWidgetItem* pa
     if ( CORBA::is_nil(gobj ) ) continue;
     
     int smType = gobj->GetShapeType();
-    if ( smType == GEOM::COMPSOLID ) smType == GEOM::COMPOUND;
+    if ( smType == GEOM::COMPSOLID ) smType = GEOM::COMPOUND;
 
     if ( !itemSubMeshes ) {
       itemSubMeshes = createItem( parent, Bold | All );
@@ -1591,7 +1591,6 @@ SMESHGUI_MeshInfoDlg::SMESHGUI_MeshInfoDlg( QWidget* parent, int page )
   l->setMargin( MARGIN );
   l->setSpacing( SPACING );
   l->addWidget( myTabWidget );
-  l->addStretch();
   l->addLayout( btnLayout );
 
   myTabWidget->setCurrentIndex( qMax( (int)BaseInfo, qMin( (int)ElemInfo, page ) ) );