From 3fda0f49bb6fdb0d6b40c936d7fd66950a7467cd Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Mon, 9 Jun 2003 15:45:35 +0000 Subject: [PATCH] Renamed the 'refresh' method of ICVariable to 'reset'. --- debug/org.eclipse.cdt.debug.ui/ChangeLog | 4 ++++ .../internal/ui/actions/VariableFormatActionDelegate.java | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/debug/org.eclipse.cdt.debug.ui/ChangeLog b/debug/org.eclipse.cdt.debug.ui/ChangeLog index b40222ddcb9..d8ed164a0bb 100644 --- a/debug/org.eclipse.cdt.debug.ui/ChangeLog +++ b/debug/org.eclipse.cdt.debug.ui/ChangeLog @@ -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 diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/VariableFormatActionDelegate.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/VariableFormatActionDelegate.java index b8873e48e99..32888853c60 100644 --- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/VariableFormatActionDelegate.java +++ b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/VariableFormatActionDelegate.java @@ -128,6 +128,6 @@ public class VariableFormatActionDelegate implements IObjectActionDelegate protected void doAction( ICVariable var ) throws DebugException { var.setFormat( fFormat ); - var.refresh(); + var.reset(); } }