diff --git a/debug/org.eclipse.cdt.debug.mi.ui/ChangeLog b/debug/org.eclipse.cdt.debug.mi.ui/ChangeLog index 5be308a4fa5..cf004576330 100644 --- a/debug/org.eclipse.cdt.debug.mi.ui/ChangeLog +++ b/debug/org.eclipse.cdt.debug.mi.ui/ChangeLog @@ -1,3 +1,7 @@ +2004-07-14 Mikhail Khodjaiants + Wrong fix. Falling back. + * GDBSolibBlock.java + 2004-07-14 Alain Magloire Wrong call the to the Button widget it should have been diff --git a/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBSolibBlock.java b/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBSolibBlock.java index b17b84329ec..d217d7da10a 100644 --- a/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBSolibBlock.java +++ b/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBSolibBlock.java @@ -187,9 +187,9 @@ public class GDBSolibBlock extends Observable implements Observer { boolean enable = !ICDTLaunchConfigurationConstants.DEBUGGER_MODE_CORE.equals( configuration.getAttribute( ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE, "" ) ); //$NON-NLS-1$ if ( fAutoSoLibButton != null ) - fAutoSoLibButton.setSelection( enable ); + fAutoSoLibButton.setEnabled( enable ); if ( fStopOnSolibEventsButton != null ) - fStopOnSolibEventsButton.setSelection( enable ); + fStopOnSolibEventsButton.setEnabled( enable ); } catch( CoreException e ) {