1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 12:03:16 +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(); MISession mi = ((Target)getTarget()).getMISession();
CommandFactory factory = mi.getCommandFactory(); CommandFactory factory = mi.getCommandFactory();
String name = "&(" + getName() + ")"; String name = "&(" + getQualifiedName() + ")"; //$NON-NLS-1$ //$NON-NLS-2$
MIVarCreate varCreateCmd = factory.createMIVarCreate(name); MIVarCreate varCreateCmd = factory.createMIVarCreate(name);
try { try {
if (mi.getCommandTimeout() >= 0) { if (mi.getCommandTimeout() >= 0) {