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; - }