From afe7bf4c258ce45a0cc045f14b5ff1db72ff8829 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Wed, 27 Apr 2005 20:21:19 +0000 Subject: [PATCH] 2005-04-27 Alain Magloire Change in the CDI interface * cdi/org/eclipse/cdt/debug/core/cdi/model/ICDISourceManagent.java --- debug/org.eclipse.cdt.debug.core/ChangeLog | 4 ++++ .../cdt/debug/core/cdi/model/ICDISourceManagement.java | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index 13ec9fee511..62f9a022c8e 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -1,3 +1,7 @@ +2005-04-27 Alain Magloire + Change in the CDI interface + * cdi/org/eclipse/cdt/debug/core/cdi/model/ICDISourceManagent.java + 2005-04-25 Mikhail Khodjaiants Added the new source container type (CDirectorySourceContainer) to provide the UI support for the subfolders search. diff --git a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDISourceManagement.java b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDISourceManagement.java index d3d76ebba01..8e0912c8ceb 100644 --- a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDISourceManagement.java +++ b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDISourceManagement.java @@ -26,7 +26,7 @@ public interface ICDISourceManagement { * Set the source search paths for the debug session. * @param String array of search paths */ - void addSourcePaths(String[] srcPaths) throws CDIException; + void setSourcePaths(String[] srcPaths) throws CDIException; /** * Return the array of source paths @@ -90,5 +90,4 @@ public interface ICDISourceManagement { int lines) throws CDIException; - }