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

Bug 334566 - [multicore][Pin&Clone] Add support for icon overlay in the debug view

missing '.' for context.
This commit is contained in:
Patrick Chuong 2011-02-16 14:43:33 +00:00
parent fe82449225
commit b048b41484

View file

@ -240,7 +240,7 @@ public class GdbPinProvider implements IPinProvider {
Object debugContext = handle.getDebugContext();
if (debugContext instanceof IAdaptable) {
IDMContext dmc = (IDMContext) ((IAdaptable) debugContext).getAdapter(IDMContext.class);
GdbPinColorTracker.INSTANCE.removeRef(dmc.getSessionId() + handle.getLabel());
GdbPinColorTracker.INSTANCE.removeRef(dmc.getSessionId() + "." + handle.getLabel()); //$NON-NLS-1$
dispatchChangedEvent(dmc);
}