mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-08 08:45:44 +02:00
Fix for bug 75948: Provide "breakpoint type name" for C breakpoints.
Applied patch from Jared Burns.
This commit is contained in:
parent
a0f0cb5366
commit
c227d55fc4
3 changed files with 19 additions and 4 deletions
|
@ -1,4 +1,10 @@
|
||||||
2004-12-21 Mikhail Khodjaiants
|
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.
|
Fix for bug 73168: Use memory view provided by Eclipse platform in CDT.
|
||||||
The CMemoryBlockextension is used as an adapter to "IMemoryBlockRetrieval".
|
The CMemoryBlockextension is used as an adapter to "IMemoryBlockRetrieval".
|
||||||
* CMemoryBlockExtension.java
|
* CMemoryBlockExtension.java
|
||||||
|
|
|
@ -12,3 +12,8 @@ pluginName=C/C++ Development Tools Debug Model
|
||||||
providerName=Eclipse.org
|
providerName=Eclipse.org
|
||||||
|
|
||||||
CDebugger.name=C/C++ Development Tools Core Debugger Extension
|
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
|
|
@ -118,23 +118,27 @@
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.debug.core.breakpoints">
|
point="org.eclipse.debug.core.breakpoints">
|
||||||
<breakpoint
|
<breakpoint
|
||||||
markerType="org.eclipse.cdt.debug.core.cLineBreakpointMarker"
|
|
||||||
class="org.eclipse.cdt.debug.internal.core.breakpoints.CLineBreakpoint"
|
class="org.eclipse.cdt.debug.internal.core.breakpoints.CLineBreakpoint"
|
||||||
|
name="%cLineBreakpoints.name"
|
||||||
|
markerType="org.eclipse.cdt.debug.core.cLineBreakpointMarker"
|
||||||
id="cLineBreakpoint">
|
id="cLineBreakpoint">
|
||||||
</breakpoint>
|
</breakpoint>
|
||||||
<breakpoint
|
<breakpoint
|
||||||
markerType="org.eclipse.cdt.debug.core.cAddressBreakpointMarker"
|
|
||||||
class="org.eclipse.cdt.debug.internal.core.breakpoints.CAddressBreakpoint"
|
class="org.eclipse.cdt.debug.internal.core.breakpoints.CAddressBreakpoint"
|
||||||
|
name="%cAddressBreakpoints.name"
|
||||||
|
markerType="org.eclipse.cdt.debug.core.cAddressBreakpointMarker"
|
||||||
id="cAddressBreakpoint">
|
id="cAddressBreakpoint">
|
||||||
</breakpoint>
|
</breakpoint>
|
||||||
<breakpoint
|
<breakpoint
|
||||||
markerType="org.eclipse.cdt.debug.core.cFunctionBreakpointMarker"
|
|
||||||
class="org.eclipse.cdt.debug.internal.core.breakpoints.CFunctionBreakpoint"
|
class="org.eclipse.cdt.debug.internal.core.breakpoints.CFunctionBreakpoint"
|
||||||
|
name="%cFunctionBreakpoints.name"
|
||||||
|
markerType="org.eclipse.cdt.debug.core.cFunctionBreakpointMarker"
|
||||||
id="cFunctionBreakpoint">
|
id="cFunctionBreakpoint">
|
||||||
</breakpoint>
|
</breakpoint>
|
||||||
<breakpoint
|
<breakpoint
|
||||||
markerType="org.eclipse.cdt.debug.core.cWatchpointMarker"
|
|
||||||
class="org.eclipse.cdt.debug.internal.core.breakpoints.CWatchpoint"
|
class="org.eclipse.cdt.debug.internal.core.breakpoints.CWatchpoint"
|
||||||
|
name="%cWatchpoints.name"
|
||||||
|
markerType="org.eclipse.cdt.debug.core.cWatchpointMarker"
|
||||||
id="cWatchpoint">
|
id="cWatchpoint">
|
||||||
</breakpoint>
|
</breakpoint>
|
||||||
</extension>
|
</extension>
|
||||||
|
|
Loading…
Add table
Reference in a new issue