From: san Date: Wed, 2 Feb 2005 13:22:46 +0000 (+0000) Subject: ClikOnClose() inexistant slot name corrected; onApply() return value corrected X-Git-Tag: V2_2_0b4~24 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=c29c4a6a7a2656ab48e5c3565ef416901e83bb63;hp=b5e77ba5e9b02af05c0b57d13c614c470f96bcff ClikOnClose() inexistant slot name corrected; onApply() return value corrected --- 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; } //=======================================================================