Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikhail Khodjaiants2004-11-26 21:42:05 +0000
committerMikhail Khodjaiants2004-11-26 21:42:05 +0000
commit571c340d3b5a01ac70d31f65bc68d34df13f14dd (patch)
treebd025fb685e8b61170566140c0448d367dd308a6
parent6037d0c08fc9026a9d21f26b859743981e06fce4 (diff)
downloadorg.eclipse.cdt-571c340d3b5a01ac70d31f65bc68d34df13f14dd.tar.gz
org.eclipse.cdt-571c340d3b5a01ac70d31f65bc68d34df13f14dd.tar.xz
org.eclipse.cdt-571c340d3b5a01ac70d31f65bc68d34df13f14dd.zip
Fix for bug 79452: Unable to set a breakpoint on a class method.
-rw-r--r--debug/org.eclipse.cdt.debug.ui/plugin.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/plugin.xml b/debug/org.eclipse.cdt.debug.ui/plugin.xml
index 3ae777d0a1e..981a2a7934b 100644
--- a/debug/org.eclipse.cdt.debug.ui/plugin.xml
+++ b/debug/org.eclipse.cdt.debug.ui/plugin.xml
@@ -596,6 +596,20 @@
</action>
</objectContribution>
<objectContribution
+ objectClass="org.eclipse.cdt.core.model.IMethod"
+ id="org.eclipse.cdt.debug.ui.FunctionBreakpointActions">
+ <action
+ label="%ManageFunctionBreakpointAction.label"
+ icon="icons/full/elcl16/function_brkpt_co.gif"
+ helpContextId="manage_function_breakpoint_action_context"
+ tooltip="%ManageFunctionBreakpointAction.tooltip"
+ class="org.eclipse.cdt.debug.internal.ui.actions.ManageFunctionBreakpointActionDelegate"
+ menubarPath="additions"
+ enablesFor="1"
+ id="org.eclipse.cdt.debug.internal.ui.actions.ManageFunctionBreakpointActionDelegate">
+ </action>
+ </objectContribution>
+ <objectContribution
objectClass="org.eclipse.cdt.core.model.IVariable"
id="org.eclipse.cdt.debug.ui.WatchpointActions">
<action

Back to the top