1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-20 15:35:24 +02:00

Wrong fix. Falling back.

This commit is contained in:
Mikhail Khodjaiants 2004-07-14 20:32:20 +00:00
parent 3f70afdcc3
commit d1dfc1364e
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2004-07-14 Mikhail Khodjaiants
Wrong fix. Falling back.
* GDBSolibBlock.java
2004-07-14 Alain Magloire 2004-07-14 Alain Magloire
Wrong call the to the Button widget it should have been Wrong call the to the Button widget it should have been

View file

@ -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$ boolean enable = !ICDTLaunchConfigurationConstants.DEBUGGER_MODE_CORE.equals( configuration.getAttribute( ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE, "" ) ); //$NON-NLS-1$
if ( fAutoSoLibButton != null ) if ( fAutoSoLibButton != null )
fAutoSoLibButton.setSelection( enable ); fAutoSoLibButton.setEnabled( enable );
if ( fStopOnSolibEventsButton != null ) if ( fStopOnSolibEventsButton != null )
fStopOnSolibEventsButton.setSelection( enable ); fStopOnSolibEventsButton.setEnabled( enable );
} }
catch( CoreException e ) catch( CoreException e )
{ {