Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Schreiber2017-03-28 13:53:15 +0000
committerMartin Schreiber2018-01-04 05:16:20 +0000
commit5d8385eab6b9e5786a860957d68e5b40258dc494 (patch)
tree96f30cfd0a89355ad04ee43ac296b2ac9ddd33ba /org.eclipse.debug.ui/plugin.xml
parent9918ee7e4b95e09fded8c210ad3d5e0f046f1045 (diff)
downloadeclipse.platform.debug-5d8385eab6b9e5786a860957d68e5b40258dc494.tar.gz
eclipse.platform.debug-5d8385eab6b9e5786a860957d68e5b40258dc494.tar.xz
eclipse.platform.debug-5d8385eab6b9e5786a860957d68e5b40258dc494.zip
Bug 514319 - Using a dedicated trim method to trim the expressions labels
When selected expressions get copied into the clipboards text transfer, first cut off the leading and tailing quotes. This is done by extending the VirtualCopyToClipboardActionDelegate with a method called trimLabel. Clients (in that case a own action delegate for expressions) could do additional trimming to the label provided by the label provider. Change-Id: I71a5c205f7eb2a8db5d112eec2d3a28dbb237f1e Signed-off-by: Martin Schreiber <m.schreiber@bachmann.info>
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index d5bf76fd1..b301161db 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -1582,7 +1582,7 @@
icon="$nl$/icons/full/elcl16/copy_edit_co.png"
definitionId="org.eclipse.ui.edit.copy"
helpContextId="copy_variables_to_clipboard_action_context"
- class="org.eclipse.debug.internal.ui.viewers.model.VirtualCopyToClipboardActionDelegate"
+ class="org.eclipse.debug.internal.ui.actions.expressions.CopyExpressionsToClipboardActionDelegate"
menubarPath="expressionGroup"
id="org.eclipse.debug.ui.debugview.popupMenu.copyVariablesToClipboard">
<selection

Back to the top