Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/dsf
diff options
context:
space:
mode:
authorPawel Piech2012-07-23 21:51:24 +0000
committerPawel Piech2012-07-23 21:51:24 +0000
commit7162e1992442a2c12c9cb1c457e2573661d909ce (patch)
tree2c6de246615e1b6d9bacc771f7ed5b98bde367a2 /dsf
parent45d2d9400dea5ac9b620469037d1f9514c5ce89a (diff)
downloadorg.eclipse.cdt-7162e1992442a2c12c9cb1c457e2573661d909ce.tar.gz
org.eclipse.cdt-7162e1992442a2c12c9cb1c457e2573661d909ce.tar.xz
org.eclipse.cdt-7162e1992442a2c12c9cb1c457e2573661d909ce.zip
Bug 385797 - [menus] Add command for "Refresh Debug Views" to allow a key-binding.
Diffstat (limited to 'dsf')
-rw-r--r--dsf/org.eclipse.cdt.dsf.ui/plugin.properties2
-rw-r--r--dsf/org.eclipse.cdt.dsf.ui/plugin.xml8
2 files changed, 10 insertions, 0 deletions
diff --git a/dsf/org.eclipse.cdt.dsf.ui/plugin.properties b/dsf/org.eclipse.cdt.dsf.ui/plugin.properties
index 996feae9d4d..beddd33412d 100644
--- a/dsf/org.eclipse.cdt.dsf.ui/plugin.properties
+++ b/dsf/org.eclipse.cdt.dsf.ui/plugin.properties
@@ -54,6 +54,8 @@ popup.resumeAtLine.label=Resume At Li&ne
popup.moveToLine.label=&Move To Line
popup.runToLine.label=Run To &Line
+command.refreshAll.name=Refresh Debug Views
+command.refreshAll.description=Refresh all data in debug views
# Preferences
diff --git a/dsf/org.eclipse.cdt.dsf.ui/plugin.xml b/dsf/org.eclipse.cdt.dsf.ui/plugin.xml
index c745ce4544d..bfa8abf7798 100644
--- a/dsf/org.eclipse.cdt.dsf.ui/plugin.xml
+++ b/dsf/org.eclipse.cdt.dsf.ui/plugin.xml
@@ -672,6 +672,14 @@
</actionSet>
</extension>
+ <extension point="org.eclipse.ui.commands">
+ <command
+ categoryId="org.eclipse.debug.ui.category.run"
+ description="%command.refreshAll.description"
+ id="org.eclipse.cdt.dsf.debug.ui.refreshAll"
+ name="%command.refreshAll.name"/>
+ </extension>
+
<!-- Debug perspective extension -->
<extension
point="org.eclipse.ui.perspectiveExtensions">

Back to the top