From 66a387fa592bd2d2ffea93098eff9eef09422adf Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Mon, 25 Aug 2003 23:37:31 +0000 Subject: [PATCH] use getQualifiedname() --- .../org/eclipse/cdt/debug/mi/core/cdi/model/VariableObject.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/model/VariableObject.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/model/VariableObject.java index 3bd22c3a208..35b177a87ef 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/model/VariableObject.java +++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/model/VariableObject.java @@ -240,7 +240,7 @@ public class VariableObject extends CObject implements ICDIVariableObject { Session session = (Session) (target.getSession()); MISession mi = session.getMISession(); CommandFactory factory = mi.getCommandFactory(); - MIWhatis whatis = factory.createMIWhatis(getName()); + MIWhatis whatis = factory.createMIWhatis(getQualifiedName()); mi.postCommand(whatis); MIWhatisInfo info = whatis.getMIWhatisInfo(); if (info == null) {