1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-01 21:35:40 +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(); ((CValue)fValue).dispose();
fValue = null; fValue = null;
} }
fTypeName = null;
fireChangeEvent( DebugEvent.STATE ); fireChangeEvent( DebugEvent.STATE );
} }
} }
@ -471,6 +472,7 @@ public abstract class CVariable extends CDebugElement
((CValue)fValue).dispose(); ((CValue)fValue).dispose();
fValue = null; fValue = null;
} }
fTypeName = null;
fireChangeEvent( DebugEvent.STATE ); fireChangeEvent( DebugEvent.STATE );
} }