Salome HOME
1) Fix for the issue "21220: EDF SMESH: Split into tetra from group does not work"
authorrnv <rnv@opencascade.com>
Tue, 12 Apr 2011 12:28:40 +0000 (12:28 +0000)
committerrnv <rnv@opencascade.com>
Tue, 12 Apr 2011 12:28:40 +0000 (12:28 +0000)
2) Change mechanism of the adding items in the QListWidget.

src/SMESHGUI/SMESHGUI_MultiEditDlg.cxx

index 7755297ebddd0dd59ab1b02aa7142708e588495a..cdd6f7908a55768d8181f20b216328682f6e7485 100755 (executable)
@@ -776,12 +776,13 @@ void SMESHGUI_MultiEditDlg::onAddBtn()
   bool isGroupOrSubmesh = (mySubmeshChk->isChecked() || myGroupChk->isChecked());
   mySubmeshChk->setChecked(false);
   myGroupChk->setChecked(false);
+  QStringList items;
   for(int i = 1; i <= toBeAdded.Extent(); i++)
     if (myIds.Add(toBeAdded(i))) {
-      QListWidgetItem* item = new QListWidgetItem(QString("%1").arg(toBeAdded(i)));
-      myListBox->addItem(item);
-      item->setSelected(true);
+      items.append(QString("%1").arg(toBeAdded(i)));
     }
+  myListBox->addItems(items);
+  myListBox->selectAll();
   myBusy = false;
 
   emit ListContensChanged();
@@ -1480,7 +1481,7 @@ SMESHGUI_CuttingIntoTetraDlg::SMESHGUI_CuttingIntoTetraDlg(SMESHGUI* theModule)
 {
   setWindowTitle(tr("CAPTION"));
   myHelpFileName = "split_to_tetra_page.html";
-  myEntityType = SMESH::VolumeFilter;
+  myEntityType = 1;
 
   myToAllChk->setChecked( true ); //aplly to the whole mesh by default