1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-17 05:05:43 +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:44:32 +00:00
parent fbda3f7d9a
commit fb22e46d9a
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-22 Alain Magloire 2004-01-22 Alain Magloire
Set the sharedLibManager autorefresh to be off by defaul Set the sharedLibManager autorefresh to be off by defaul

View file

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