Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-Andre Laperle2014-06-11 15:54:48 +0000
committerJeff Johnston2014-06-11 17:54:43 +0000
commit27e173d8a1cc99fe407b0cc122a9dc09846c8925 (patch)
treeca2dac18f1013ad61dcd8692de39f02ec7a304d2
parent43e5ce87e6852073934026dbf7f313a02c921d8f (diff)
downloadorg.eclipse.cdt-CDT_8_4_0.tar.gz
org.eclipse.cdt-CDT_8_4_0.tar.xz
org.eclipse.cdt-CDT_8_4_0.zip
standalone debugger: Disable menus only when product is the standalone debuggerCDT_8_4_0
Change-Id: I62345062eddbcdae9134c5f913f771c7cf4f174f Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com> Reviewed-on: https://git.eclipse.org/r/28370 Tested-by: Jeff Johnston <jjohnstn@redhat.com> Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
-rw-r--r--debug/org.eclipse.cdt.debug.application/plugin.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.application/plugin.xml b/debug/org.eclipse.cdt.debug.application/plugin.xml
index 5aab488af59..f152b4044fc 100644
--- a/debug/org.eclipse.cdt.debug.application/plugin.xml
+++ b/debug/org.eclipse.cdt.debug.application/plugin.xml
@@ -46,6 +46,14 @@
<activity
id="org.eclipse.cdt.debug.application.activity.filterMenus"
name="%FilterMenus.name">
+ <enabledWhen>
+ <not>
+ <systemTest
+ property="eclipse.product"
+ value="org.eclipse.cdt.debug.application.product">
+ </systemTest>
+ </not>
+ </enabledWhen>
</activity>
<categoryActivityBinding
activityId="org.eclipse.cdt.debug.application.activity.filterMenus"

Back to the top