From c29c4a6a7a2656ab48e5c3565ef416901e83bb63 Mon Sep 17 00:00:00 2001 From: san Date: Wed, 2 Feb 2005 13:22:46 +0000 Subject: [PATCH] ClikOnClose() inexistant slot name corrected; onApply() return value corrected --- src/SMESHGUI/SMESHGUI_DeleteGroupDlg.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SMESHGUI/SMESHGUI_DeleteGroupDlg.cxx b/src/SMESHGUI/SMESHGUI_DeleteGroupDlg.cxx index 07d3f87cd..db93adf3b 100644 --- a/src/SMESHGUI/SMESHGUI_DeleteGroupDlg.cxx +++ b/src/SMESHGUI/SMESHGUI_DeleteGroupDlg.cxx @@ -148,7 +148,7 @@ void SMESHGUI_DeleteGroupDlg::Init( SALOME_Selection* theSelection ) // selection and SMESHGUI connect( mySelection, SIGNAL( currentSelectionChanged() ), SLOT( onSelectionDone() ) ); connect( aSMESHGUI, SIGNAL( SignalDeactivateActiveDialog() ), SLOT( onDeactivate() ) ); - connect( aSMESHGUI, SIGNAL( SignalCloseAllDialogs() ), SLOT( ClickOnClose() ) ); + connect( aSMESHGUI, SIGNAL( SignalCloseAllDialogs() ), SLOT( onClose() ) ); int x, y ; aSMESHGUI->DefineDlgPosition( this, x, y ); @@ -205,7 +205,7 @@ bool SMESHGUI_DeleteGroupDlg::onApply() SMESHGUI::GetSMESHGUI()->GetActiveStudy()->updateObjBrowser( true ); myBlockSelection = false; - return false; + return true; } //======================================================================= -- 2.30.2