1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-08 00:35:49 +02:00

Fix for bug 75948: Provide "breakpoint type name" for C breakpoints.

Applied patch from Jared Burns.
This commit is contained in:
Mikhail Khodjaiants 2004-12-22 21:44:53 +00:00
parent a0f0cb5366
commit c227d55fc4
3 changed files with 19 additions and 4 deletions

View file

@ -1,4 +1,10 @@
2004-12-21 Mikhail Khodjaiants
Fix for bug 75948: Provide "breakpoint type name" for C breakpoints.
Applied patch from Jared Burns.
* plugin.properties
* plugin.xml
2004-12-22 Mikhail Khodjaiants
Fix for bug 73168: Use memory view provided by Eclipse platform in CDT.
The CMemoryBlockextension is used as an adapter to "IMemoryBlockRetrieval".
* CMemoryBlockExtension.java

View file

@ -12,3 +12,8 @@ pluginName=C/C++ Development Tools Debug Model
providerName=Eclipse.org
CDebugger.name=C/C++ Development Tools Core Debugger Extension
cLineBreakpoints.name=C/C++ Line Breakpoints
cAddressBreakpoints.name=C/C++ Address Breakpoints
cFunctionBreakpoints.name=C/C++ Function Breakpoints
cWatchpoints.name=C/C++ Watchpoints

View file

@ -118,23 +118,27 @@
<extension
point="org.eclipse.debug.core.breakpoints">
<breakpoint
markerType="org.eclipse.cdt.debug.core.cLineBreakpointMarker"
class="org.eclipse.cdt.debug.internal.core.breakpoints.CLineBreakpoint"
name="%cLineBreakpoints.name"
markerType="org.eclipse.cdt.debug.core.cLineBreakpointMarker"
id="cLineBreakpoint">
</breakpoint>
<breakpoint
markerType="org.eclipse.cdt.debug.core.cAddressBreakpointMarker"
class="org.eclipse.cdt.debug.internal.core.breakpoints.CAddressBreakpoint"
name="%cAddressBreakpoints.name"
markerType="org.eclipse.cdt.debug.core.cAddressBreakpointMarker"
id="cAddressBreakpoint">
</breakpoint>
<breakpoint
markerType="org.eclipse.cdt.debug.core.cFunctionBreakpointMarker"
class="org.eclipse.cdt.debug.internal.core.breakpoints.CFunctionBreakpoint"
name="%cFunctionBreakpoints.name"
markerType="org.eclipse.cdt.debug.core.cFunctionBreakpointMarker"
id="cFunctionBreakpoint">
</breakpoint>
<breakpoint
markerType="org.eclipse.cdt.debug.core.cWatchpointMarker"
class="org.eclipse.cdt.debug.internal.core.breakpoints.CWatchpoint"
name="%cWatchpoints.name"
markerType="org.eclipse.cdt.debug.core.cWatchpointMarker"
id="cWatchpoint">
</breakpoint>
</extension>