1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-08 01:25:23 +02:00

Fix for bug 50967: Linux/SWT blows when double click on the register view.

This commit is contained in:
Mikhail Khodjaiants 2004-01-30 19:23:07 +00:00
parent 9c46de496a
commit a5a43bb8b1
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2004-01-30 Mikhail Khodjaiants
Fix for bug 50967: Linux/SWT blows when double click on the register view.
* ChangeRegisterValueAction.java
2004-01-29 Mikhail Khodjaiants
Added new error status handler.
* plugin.xml

View file

@ -206,7 +206,9 @@ public class ChangeRegisterValueAction extends SelectionProviderAction
}
catch( DebugException de )
{
cleanup();
CDebugUIPlugin.errorDialog( "Setting the register value failed.", de );
return;
}
cleanup();
}