1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Temporary fix for bug 56520: Debug Perspective doesn't get called when a breakpoint is hit.

This commit is contained in:
Mikhail Khodjaiants 2004-06-24 20:25:41 +00:00
parent fcfd9098e0
commit 9b23979d4f
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2004-06-24 Mikhail Khodjaiants
Temporary fix for bug 56520: Debug Perspective doesn't get called when a breakpoint is hit.
* CThread.java
2004-06-23 Mikhail Khodjaiants
Fix for bug 68316: Exception shutting down Eclipse with an active debug session.
* CStackFrame.java

View file

@ -850,7 +850,9 @@ public class CThread extends CDebugElement
}
else
{
fireSuspendEvent( DebugEvent.CLIENT_REQUEST );
// fireSuspendEvent( DebugEvent.CLIENT_REQUEST );
// Temporary fix for bug 56520
fireSuspendEvent( DebugEvent.BREAKPOINT );
}
}
return;