]> SALOME platform Git repositories - modules/smesh.git/commitdiff
Salome HOME
Bug IPAL19467 - QT4 porting: geometrical group is not selected for mesh group
authorouv <ouv@opencascade.com>
Mon, 7 Apr 2008 09:54:43 +0000 (09:54 +0000)
committerouv <ouv@opencascade.com>
Mon, 7 Apr 2008 09:54:43 +0000 (09:54 +0000)
src/SMESHGUI/SMESHGUI_GroupDlg.cxx

index 0732535eeadde92d0fe9c7d93b4b18a07f213eb0..ff0c476c5c70fb800a686bfac4f487f321ef1bdb 100644 (file)
@@ -932,7 +932,7 @@ void SMESHGUI_GroupDlg::onListSelectionChanged()
 void SMESHGUI_GroupDlg::onObjectSelectionChanged()
 {
   if ( myIsBusy || !isEnabled()) return;
-  if (myCurrentLineEdit == myGeomGroupLine && !myGeomGroupBtn->isDown()) return;
+  if (myCurrentLineEdit == myGeomGroupLine && !myGeomGroupBtn->isChecked()) return;
 
   myIsBusy = true;
 
@@ -958,8 +958,8 @@ void SMESHGUI_GroupDlg::onObjectSelectionChanged()
       myGeomObjects = new GEOM::ListOfGO();
       myGeomObjects->length(0);
 
-      if (myGeomGroupBtn->isDown())
-       myGeomGroupBtn->setDown(false);
+      if (myGeomGroupBtn->isChecked())
+       myGeomGroupBtn->setChecked(false);
       if (!myCreate)
         myName->setText("");
 
@@ -1246,7 +1246,7 @@ void SMESHGUI_GroupDlg::onSelectGeomGroup(bool on)
     setSelectionMode(8);
   }
   else {
-    myGeomGroupBtn->setDown(false);
+    myGeomGroupBtn->setChecked(false);
     myGeomObjects->length(0);
     myGeomGroupLine->setText("");
     myCurrentLineEdit = 0;