Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlparsons2004-04-15 03:18:24 +0000
committerlparsons2004-04-15 03:18:24 +0000
commite227a963a33a8aa938b5cb7f3238f514255ce244 (patch)
tree3da2bb6195c280185f055bc91f7febfa8b6321ab /org.eclipse.ui.cheatsheets/plugin.xml
parentb97694a4645d185e30d4a2a9c4ca928950b8d534 (diff)
downloadeclipse.platform.ua-e227a963a33a8aa938b5cb7f3238f514255ce244.tar.gz
eclipse.platform.ua-e227a963a33a8aa938b5cb7f3238f514255ce244.tar.xz
eclipse.platform.ua-e227a963a33a8aa938b5cb7f3238f514255ce244.zip
Remove the dependency on Intro and correctly add the Cheat Sheets menu to the Help menu
Diffstat (limited to 'org.eclipse.ui.cheatsheets/plugin.xml')
-rw-r--r--org.eclipse.ui.cheatsheets/plugin.xml28
1 files changed, 13 insertions, 15 deletions
diff --git a/org.eclipse.ui.cheatsheets/plugin.xml b/org.eclipse.ui.cheatsheets/plugin.xml
index 35eb3b62f..1759debfc 100644
--- a/org.eclipse.ui.cheatsheets/plugin.xml
+++ b/org.eclipse.ui.cheatsheets/plugin.xml
@@ -15,7 +15,6 @@
<requires>
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.ui.forms"/>
- <import plugin="org.eclipse.ui.intro"/>
<import plugin="org.eclipse.help"/>
<import plugin="org.eclipse.core.runtime"/>
</requires>
@@ -60,20 +59,19 @@
id="org.eclipse.ui.cheatsheets.views.CheatSheetView">
</view>
</extension>
-
- <!-- ===================================================== -->
- <!-- Standby Content Part contributions -->
- <!-- ===================================================== -->
- <extension point="org.eclipse.ui.intro.configExtension">
- <standbyPart
- id="org.eclipse.ui.cheatsheets.standbyPart"
- class="org.eclipse.ui.internal.cheatsheets.views.CheatSheetStandbyContent"
- pluginId="org.eclipse.ui.cheatsheets"/>
- </extension>
-
-<!--
<extension
- point="org.eclipse.ui.startup">
+ point="org.eclipse.ui.actionSets">
+ <actionSet
+ label="%CHEAT_SHEETS"
+ visible="true"
+ id="org.eclipse.ui.cheatsheets.actionSet">
+ <action
+ label="%CHEAT_SHEETS"
+ style="pulldown"
+ class="org.eclipse.ui.internal.cheatsheets.actions.CheatSheetMenuAction"
+ menubarPath="help/helpStart"
+ id="org.eclipse.ui.cheatsheets.actions.CheatSheetMenuAction">
+ </action>
+ </actionSet>
</extension>
--->
</plugin>

Back to the top