1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

was calling DestroyedEvent incorrectly.

This commit is contained in:
Alain Magloire 2003-01-08 17:46:46 +00:00
parent 1a1f010b24
commit 0b45e0e0db

View file

@ -103,7 +103,7 @@ public class EventManager extends SessionObject implements ICDIEventManager, Obs
} else if (miEvent instanceof MIDetachedEvent) {
cdiList.add(new DisconnectedEvent(session));
} else if (miEvent instanceof MIBreakPointDeletedEvent) {
cdiList.add(new DestroyedEvent(session));
cdiList.add(new DestroyedEvent(session, (MIBreakPointDeletedEvent)miEvent));
}
} else if (miEvent instanceof MICreatedEvent) {
if (miEvent instanceof MIBreakPointCreatedEvent) {