diff --git a/debug/org.eclipse.cdt.debug.core/ChangeLog b/debug/org.eclipse.cdt.debug.core/ChangeLog index fe3e9ce3932..56bfe2d503a 100644 --- a/debug/org.eclipse.cdt.debug.core/ChangeLog +++ b/debug/org.eclipse.cdt.debug.core/ChangeLog @@ -1,3 +1,7 @@ +2004-11-09 Alain Magloire + Put possiblity to set Exception breakpoint + * cdi/org/eclipse/cdt/debug/core/cdi/ICDIBreakpointManagement.java + 2004-11-08 Alain Magloire Bug in CVariableFactory for globals, the filename of the binary was use instead of the filename of the symbol. @@ -6,7 +10,7 @@ 2004-11-08 Alain Magloire New class ICDIFunctionFinished. It return the return value of the function. - * cdi/org/eclipse/cdt/debug/mi/core/cdi/ICDIFunctionFinished.java + * cdi/org/eclipse/cdt/debug/core/cdi/ICDIFunctionFinished.java 2004-11-04 Mikhail Khodjaiants Removed "Refresh" and "Auto-Refresh" actions support for shared libraries. diff --git a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIBreakpointManagement.java b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIBreakpointManagement.java index ae8e15a3961..4300da609e3 100644 --- a/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIBreakpointManagement.java +++ b/debug/org.eclipse.cdt.debug.core/cdi/org/eclipse/cdt/debug/core/cdi/model/ICDIBreakpointManagement.java @@ -33,6 +33,6 @@ public interface ICDIBreakpointManagement { void deleteAllBreakpoints() throws CDIException; -// ICDIExceptionBreakpoint setExceptionBreakpoint(String clazz, boolean stopOnThrow, boolean stopOnCatch) throws CDIException; + ICDIExceptionpoint setExceptionBreakpoint(String clazz, boolean stopOnThrow, boolean stopOnCatch) throws CDIException; }