mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Assign instead of a comparison
This commit is contained in:
parent
2186e92527
commit
3c97196d1b
1 changed files with 1 additions and 1 deletions
|
@ -507,7 +507,7 @@ bool CObject::getShortestName(std::string &instanceId, std::string &attrName, si
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
instanceId = parent2->getAttr("InstanceId")->toString();
|
instanceId = parent2->getAttr("InstanceId")->toString();
|
||||||
attrName == parent2->getKey(index2);
|
attrName = parent2->getKey(index2);
|
||||||
position = index;
|
position = index;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue