1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 17:35:35 +02:00

Bug 193471: Variables View: mi_cmd_var_create: unable to create variable object.

This commit is contained in:
Mikhail Khodjaiants 2007-06-20 13:37:16 +00:00
parent ba7fc92b2e
commit 0c6372a4b4

View file

@ -163,7 +163,7 @@ public abstract class Variable extends VariableDescriptor implements ICDIVariabl
MISession mi = ((Target)getTarget()).getMISession();
CommandFactory factory = mi.getCommandFactory();
String name = "&(" + getName() + ")";
String name = "&(" + getQualifiedName() + ")"; //$NON-NLS-1$ //$NON-NLS-2$
MIVarCreate varCreateCmd = factory.createMIVarCreate(name);
try {
if (mi.getCommandTimeout() >= 0) {