Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Khouzam2017-01-05 16:09:56 +0000
committerGerrit Code Review @ Eclipse.org2017-01-23 17:42:09 +0000
commit6480a154efe2a954e3b923e44984e5bffb2578cb (patch)
tree91dcc05814db86b085558f3ad680647f0304147d /debug/org.eclipse.cdt.debug.ui
parent23772b2dde8df063aaebec1ad0f314e20f0fcda0 (diff)
downloadorg.eclipse.cdt-6480a154efe2a954e3b923e44984e5bffb2578cb.tar.gz
org.eclipse.cdt-6480a154efe2a954e3b923e44984e5bffb2578cb.tar.xz
org.eclipse.cdt-6480a154efe2a954e3b923e44984e5bffb2578cb.zip
Bug 508543 - Reverse Bp Action doesn't display type properly for editing
The value returned by IBreakpointAction#getTypeName() must match the value provided in the plugin.xml file for that same action. The two names are compared in ActionDialog.createDialogArea() to know if the proper action has been found. This is a fragile technique, that should eventually be improved. For now, we just fix the current problem. Change-Id: I70fd8b90fc680d3a5d55a95bdd5193d382b6c6f2
Diffstat (limited to 'debug/org.eclipse.cdt.debug.ui')
-rw-r--r--debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/breakpointactions/messages.properties2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/breakpointactions/messages.properties b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/breakpointactions/messages.properties
index 11950893102..dd6f4dc0bad 100644
--- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/breakpointactions/messages.properties
+++ b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/ui/breakpointactions/messages.properties
@@ -63,7 +63,7 @@ ResumeAction.error.0=IResumeActionEnabler not registered in context.
ResumeAction.error.1=Could not resume.
ReverseDebugAction.UntitledName=Untitled Rev Debug Action
-ReverseDebugAction.TypeName=Rev Debug Action
+ReverseDebugAction.TypeName=Reverse Debug Action
ReverseDebugActionComposite.label=Select Reverse Debugging Action
ReverseDebugAction.Summary= reverse debugging
ReverseDebugAction.error.0=IReverseToggleEnabler not registered in context.

Back to the top