1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Renamed the 'refresh' method of ICVariable to 'reset'.

This commit is contained in:
Mikhail Khodjaiants 2003-06-09 15:45:35 +00:00
parent 198153d7e6
commit 3fda0f49bb
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2003-06-09 Mikhail Khodjaiants
Renamed the 'refresh' method of ICVariable to 'reset'.
* VariableFormatActionDelegate.java
2003-06-05 Mikhail Khodjaiants
Changed the presentation of arrays and array types.
* CDTDebugModelPresentation.java

View file

@ -128,6 +128,6 @@ public class VariableFormatActionDelegate implements IObjectActionDelegate
protected void doAction( ICVariable var ) throws DebugException
{
var.setFormat( fFormat );
var.refresh();
var.reset();
}
}