From fb481703f27d64109e69c6b371801e97ff664c7d Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Fri, 17 Jan 2003 21:33:24 +0000 Subject: [PATCH] call loadSymbols from the manager. --- .../org/eclipse/cdt/debug/mi/core/cdi/model/SharedLibrary.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/model/SharedLibrary.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/model/SharedLibrary.java index 6c136008f49..3959c0f75db 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/model/SharedLibrary.java +++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/cdi/model/SharedLibrary.java @@ -61,7 +61,7 @@ public class SharedLibrary extends CObject implements ICDISharedLibrary { * @see org.eclipse.cdt.debug.core.cdi.model.ICDISharedLibrary#loadSymbols() */ public void loadSymbols() throws CDIException { - mgr.loadSymbols(this); + mgr.loadSymbols(new ICDISharedLibrary[] { this }); } }