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:
parent
fcfd9098e0
commit
9b23979d4f
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue