1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

use getQualifiedname()

This commit is contained in:
Alain Magloire 2003-08-25 23:37:31 +00:00
parent b081b1d2a5
commit 66a387fa59

View file

@ -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) {