mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-10 03:53:21 +02:00
Bug 193471: Variables View: mi_cmd_var_create: unable to create variable object.
This commit is contained in:
parent
ba7fc92b2e
commit
0c6372a4b4
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue