Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoopur Gupta2020-03-26 11:18:27 +0000
committerNoopur Gupta2020-03-26 11:18:27 +0000
commit4f984bac9597c5b0e8422a9923e971b0e502261f (patch)
treec3b61d3eaa16ff18ff59fea0fc55d1270fc2cfc2
parent40f3bf4963dddb1ca71253c6e1c68cc879946f0d (diff)
downloadeclipse.platform.debug-4f984bac9597c5b0e8422a9923e971b0e502261f.tar.gz
eclipse.platform.debug-4f984bac9597c5b0e8422a9923e971b0e502261f.tar.xz
eclipse.platform.debug-4f984bac9597c5b0e8422a9923e971b0e502261f.zip
Bug 561451: Call wrong UI String for quick access label/headerI20200328-1800I20200327-1800
-rw-r--r--org.eclipse.debug.ui/plugin.properties4
-rw-r--r--org.eclipse.debug.ui/plugin.xml6
2 files changed, 6 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/plugin.properties b/org.eclipse.debug.ui/plugin.properties
index 43bc3bd37..f6834e1e2 100644
--- a/org.eclipse.debug.ui/plugin.properties
+++ b/org.eclipse.debug.ui/plugin.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2019 IBM Corporation and others.
+# Copyright (c) 2000, 2020 IBM Corporation and others.
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
@@ -60,6 +60,7 @@ DebugToolbarActionSet.label=Debug Toolbar
debugCurrentInstructionPointer=Debug Current Instruction Pointer
debugCallStack=Debug Call Stack
DebugDropDownAction.label=Debug
+DebugQuickAccess.label=Debug
DebugHistoryMenuAction.label=Debug &History
DebugLastAction.label=&Debug Last Launched
DebugLaunchGroup.label=De&bug
@@ -122,6 +123,7 @@ RemoveBreakpointAction.tooltip=Remove Selected Breakpoints
RemoveExpressionAction.tooltip=Remove Selected Expressions
ResumeAction.label=Resu&me
RunDropDownAction.label=Run
+RunQuickAccess.label=Run
RunMenu.label=&Run
RunLastAction.label=&Run Last Launched
RunLaunchGroup.label=Ru&n
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 4c7794eb1..c06fdbfeb 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!--
- Copyright (c) 2005, 2019 IBM Corporation and others.
+ Copyright (c) 2005, 2020 IBM Corporation and others.
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
@@ -3348,10 +3348,10 @@ M4 = Platform-specific fourth key
point="org.eclipse.ui.quickAccess">
<computer
class="org.eclipse.debug.internal.ui.quickaccess.RunQuickAccessComputer"
- name="%RunDropDownAction.label"/>
+ name="%RunQuickAccess.label"/>
<computer
class="org.eclipse.debug.internal.ui.quickaccess.DebugQuickAccessComputer"
- name="%DebugDropDownAction.label"/>
+ name="%DebugQuickAccess.label"/>
<computer
class="org.eclipse.debug.internal.ui.quickaccess.ProfileQuickAccessComputer"
name="%ProfileDropDownAction.label"/>

Back to the top