From 619ee91fb2ef5651121811e19ffc9ea7ac43a87e Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Wed, 7 Aug 2002 21:49:41 +0000 Subject: [PATCH] The getArguments method should return an array of ICArgument type. --- .../src/org/eclipse/cdt/debug/core/cdi/model/ICStackFrame.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICStackFrame.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICStackFrame.java index 76a4c51fdcf..224d7478ccd 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICStackFrame.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICStackFrame.java @@ -43,5 +43,5 @@ public interface ICStackFrame extends ICObject * @return a collection of arguments * @throws CDIException if this method fails. Reasons include: */ - ICVariable[] getArguments() throws CDIException; + ICArgument[] getArguments() throws CDIException; }