mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 01:36:01 +02:00
2004-07-14 Alain Magloire
Wrong call the to the Button widget it should have been setSelection() not setEnabled() * src/org/eclipse/cdt/debug/mi/internal/ui/GDBSolibBlock.java
This commit is contained in:
parent
7b75cb1d6b
commit
3f70afdcc3
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2004-07-14 Alain Magloire
|
||||||
|
|
||||||
|
Wrong call the to the Button widget it should have been
|
||||||
|
setSelection() not setEnabled()
|
||||||
|
|
||||||
|
* src/org/eclipse/cdt/debug/mi/internal/ui/GDBSolibBlock.java
|
||||||
|
|
||||||
2004-07-02 Mikhail Khodjaiants
|
2004-07-02 Mikhail Khodjaiants
|
||||||
Fix for bug 68934: Debug into dll doesn't work.
|
Fix for bug 68934: Debug into dll doesn't work.
|
||||||
The "solib-search-path" and "stop-on-solib-events" options are not supported by gdb on CygWin.
|
The "solib-search-path" and "stop-on-solib-events" options are not supported by gdb on CygWin.
|
||||||
|
|
|
@ -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.setEnabled( enable );
|
fAutoSoLibButton.setSelection( enable );
|
||||||
if ( fStopOnSolibEventsButton != null )
|
if ( fStopOnSolibEventsButton != null )
|
||||||
fStopOnSolibEventsButton.setEnabled( enable );
|
fStopOnSolibEventsButton.setSelection( enable );
|
||||||
}
|
}
|
||||||
catch( CoreException e )
|
catch( CoreException e )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue