1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 17:26: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:
Alain Magloire 2004-07-14 18:50:12 +00:00
parent 7b75cb1d6b
commit 3f70afdcc3
2 changed files with 9 additions and 2 deletions

View file

@ -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
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.

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$
if ( fAutoSoLibButton != null )
fAutoSoLibButton.setEnabled( enable );
fAutoSoLibButton.setSelection( enable );
if ( fStopOnSolibEventsButton != null )
fStopOnSolibEventsButton.setEnabled( enable );
fStopOnSolibEventsButton.setSelection( enable );
}
catch( CoreException e )
{