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:
parent
3f70afdcc3
commit
d1dfc1364e
2 changed files with 6 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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 )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue