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

Refresh the type of variable when casting.

This commit is contained in:
Mikhail Khodjaiants 2003-03-09 23:11:41 +00:00
parent 2236ae2e8f
commit 6cb24b50dd

View file

@ -437,6 +437,7 @@ public abstract class CVariable extends CDebugElement
((CValue)fValue).dispose();
fValue = null;
}
fTypeName = null;
fireChangeEvent( DebugEvent.STATE );
}
}
@ -471,6 +472,7 @@ public abstract class CVariable extends CDebugElement
((CValue)fValue).dispose();
fValue = null;
}
fTypeName = null;
fireChangeEvent( DebugEvent.STATE );
}