From b048b4148452e00a3293b16665ac84655c8c8d70 Mon Sep 17 00:00:00 2001 From: Patrick Chuong Date: Wed, 16 Feb 2011 14:43:33 +0000 Subject: [PATCH] Bug 334566 - [multicore][Pin&Clone] Add support for icon overlay in the debug view missing '.' for context. --- .../src/org/eclipse/cdt/dsf/gdb/internal/ui/GdbPinProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb.ui/src/org/eclipse/cdt/dsf/gdb/internal/ui/GdbPinProvider.java b/dsf-gdb/org.eclipse.cdt.dsf.gdb.ui/src/org/eclipse/cdt/dsf/gdb/internal/ui/GdbPinProvider.java index aa07c2814a0..c2722643e69 100644 --- a/dsf-gdb/org.eclipse.cdt.dsf.gdb.ui/src/org/eclipse/cdt/dsf/gdb/internal/ui/GdbPinProvider.java +++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb.ui/src/org/eclipse/cdt/dsf/gdb/internal/ui/GdbPinProvider.java @@ -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); }