Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDejan Gloszic2006-01-30 23:14:39 +0000
committerDejan Gloszic2006-01-30 23:14:39 +0000
commit8a8a8fcc9d036d0e69d179cdb1849549ba9d7457 (patch)
tree9860fe78a5fc2a04aa621365a47997e4cd8b68fc /org.eclipse.help.ui
parent75567553c1ad70fdb0420cf1bbbae3341d825ccf (diff)
downloadeclipse.platform.ua-8a8a8fcc9d036d0e69d179cdb1849549ba9d7457.tar.gz
eclipse.platform.ua-8a8a8fcc9d036d0e69d179cdb1849549ba9d7457.tar.xz
eclipse.platform.ua-8a8a8fcc9d036d0e69d179cdb1849549ba9d7457.zip
*** empty log message ***v20060130
Diffstat (limited to 'org.eclipse.help.ui')
-rw-r--r--org.eclipse.help.ui/plugin.properties2
-rw-r--r--org.eclipse.help.ui/plugin.xml6
-rw-r--r--org.eclipse.help.ui/src/org/eclipse/help/ui/internal/xhtml/UIContentFilterProcessor.java2
3 files changed, 2 insertions, 8 deletions
diff --git a/org.eclipse.help.ui/plugin.properties b/org.eclipse.help.ui/plugin.properties
index 305c9950b..9a1b82f20 100644
--- a/org.eclipse.help.ui/plugin.properties
+++ b/org.eclipse.help.ui/plugin.properties
@@ -49,7 +49,5 @@ dynamicHelpAction.label = Dynamic Help
dynamicHelpAction.tooltip = Dynamic Help
#Commands
-command.category.help.name = Help
-command.category.help.description = Commands relating to the Help system
command.closeTray.name = Close User Assistance Tray
command.closeTray.description = Close the user assistance tray containing context help information and cheat sheets.
diff --git a/org.eclipse.help.ui/plugin.xml b/org.eclipse.help.ui/plugin.xml
index 49a176719..1b778b797 100644
--- a/org.eclipse.help.ui/plugin.xml
+++ b/org.eclipse.help.ui/plugin.xml
@@ -126,16 +126,12 @@
<extension
point="org.eclipse.ui.commands">
<command
- categoryId="org.eclipse.help.ui.category.help"
+ categoryId="org.eclipse.ui.category.help"
defaultHandler="org.eclipse.help.ui.internal.CloseHelpTrayHandler"
description="%command.closeTray.description"
id="org.eclipse.help.ui.closeTray"
name="%command.closeTray.name">
</command>
- <category
- description="%command.category.help.description"
- id="org.eclipse.help.ui.category.help"
- name="%command.category.help.name"/>
</extension>
<extension
point="org.eclipse.ui.bindings">
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/xhtml/UIContentFilterProcessor.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/xhtml/UIContentFilterProcessor.java
index 64462d678..e6cd1a9b8 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/xhtml/UIContentFilterProcessor.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/xhtml/UIContentFilterProcessor.java
@@ -21,7 +21,7 @@ import org.eclipse.ui.activities.WorkbenchActivityHelper;
*/
public class UIContentFilterProcessor extends UAContentFilterProcessor {
- protected boolean isFilteredIn(String filter, String value) {
+ public boolean isFilteredIn(String filter, String value) {
boolean filtered_in = false;
if (filter.equals("category")) { //$NON-NLS-1$
filtered_in = filterByCategory(value);

Back to the top