1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 12:35:22 +02:00

[212940] Duplicate Help Context Identifiers

This commit is contained in:
Kevin Doyle 2007-12-14 20:55:59 +00:00
parent 5de86a5a48
commit 1a2bc616b9
4 changed files with 10 additions and 7 deletions

View file

@ -18,6 +18,7 @@
* Martin Oberhuber (Wind River) - [186128] Move IProgressMonitor last in all API * Martin Oberhuber (Wind River) - [186128] Move IProgressMonitor last in all API
* Martin Oberhuber (Wind River) - [186640] Add IRSESystemType.testProperty() * Martin Oberhuber (Wind River) - [186640] Add IRSESystemType.testProperty()
* Martin Oberhuber (Wind River) - [186773] split ISystemRegistryUI from ISystemRegistry * Martin Oberhuber (Wind River) - [186773] split ISystemRegistryUI from ISystemRegistry
* Kevin Doyle (IBM) - [212940] Duplicate Help Context Identifiers
********************************************************************************/ ********************************************************************************/
package org.eclipse.rse.internal.shells.ui.view; package org.eclipse.rse.internal.shells.ui.view;
@ -288,9 +289,6 @@ FocusListener
} }
}); });
SystemWidgetHelpers.setHelp(_viewer.getControl(), RSEUIPlugin.HELPPREFIX + "ucmd0000"); //$NON-NLS-1$
TableLayout layout = new TableLayout(); TableLayout layout = new TableLayout();
table.setLayout(layout); table.setLayout(layout);
table.setHeaderVisible(false); table.setHeaderVisible(false);

View file

@ -13,6 +13,7 @@ Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
Contributors: Contributors:
Martin Oberhuber (Wind River) - [174945] split importexport icons from rse.ui Martin Oberhuber (Wind River) - [174945] split importexport icons from rse.ui
Kevin Doyle (IBM) - [212940] Added help for Remote Monitor
--> -->
<?NLS TYPE="org.eclipse.help.contexts"?> <?NLS TYPE="org.eclipse.help.contexts"?>
<contexts> <contexts>
@ -505,6 +506,11 @@ Martin Oberhuber (Wind River) - [174945] split importexport icons from rse.ui
<description>This view shows the commands that have been run on remote systems, along with the resulting messages. <description>This view shows the commands that have been run on remote systems, along with the resulting messages.
</description> </description>
</context> </context>
<!-- Remote Monitor View... -->
<context id="mntr0000">
<description>This view lets you view the contents and properties of remote objects and configure polling options to refresh remote objects every 5 to 200 seconds.
</description>
</context>
<!-- Connection Properties Page... --> <!-- Connection Properties Page... -->
<context id="pcon0000"> <context id="pcon0000">
<description>Browse or update information about the selected connection. <description>Browse or update information about the selected connection.

View file

@ -16,6 +16,7 @@
* Martin Oberhuber (Wind River) - [186128] Move IProgressMonitor last in all API * Martin Oberhuber (Wind River) - [186128] Move IProgressMonitor last in all API
* Martin Oberhuber (Wind River) - [186773] split ISystemRegistryUI from ISystemRegistry * Martin Oberhuber (Wind River) - [186773] split ISystemRegistryUI from ISystemRegistry
* Kevin Doyle (IBM) - [177587] changed wrapped selection provider in setFocus() * Kevin Doyle (IBM) - [177587] changed wrapped selection provider in setFocus()
* Kevin Doyle (IBM) - [212940] Duplicate Help Context Identifiers
********************************************************************************/ ********************************************************************************/
package org.eclipse.rse.internal.ui.view.monitor; package org.eclipse.rse.internal.ui.view.monitor;
@ -433,9 +434,6 @@ FocusListener
} }
}); });
SystemWidgetHelpers.setHelp(_viewer.getControl(), RSEUIPlugin.HELPPREFIX + "ucmd0000"); //$NON-NLS-1$
//TableLayout layout = new TableLayout(); //TableLayout layout = new TableLayout();
//tree.setLayout(layout); //tree.setLayout(layout);
//tree.setLayout(new GridLayout()) //tree.setLayout(new GridLayout())

View file

@ -17,6 +17,7 @@
* Kevin Doyle (IBM) - [177587] Made MonitorViewPart a SelectionProvider * Kevin Doyle (IBM) - [177587] Made MonitorViewPart a SelectionProvider
* Kevin Doyle (IBM) - [160378] Subset action should be disabled when there are no tabs in Monitor * Kevin Doyle (IBM) - [160378] Subset action should be disabled when there are no tabs in Monitor
* Kevin Doyle (IBM) - [196582] ClassCastException when doing copy/paste * Kevin Doyle (IBM) - [196582] ClassCastException when doing copy/paste
* Kevin Doyle (IBM) - [212940] Duplicate Help Context Identifiers
********************************************************************************/ ********************************************************************************/
package org.eclipse.rse.internal.ui.view.monitor; package org.eclipse.rse.internal.ui.view.monitor;
@ -673,7 +674,7 @@ class SubSetAction extends BrowseAction
selectionService.addSelectionListener(this); selectionService.addSelectionListener(this);
SystemWidgetHelpers.setHelp(_folder, RSEUIPlugin.HELPPREFIX + "ucmd0000"); //$NON-NLS-1$ SystemWidgetHelpers.setHelp(_folder, RSEUIPlugin.HELPPREFIX + "mntr0000"); //$NON-NLS-1$
ISystemRegistry registry = RSECorePlugin.getTheSystemRegistry(); ISystemRegistry registry = RSECorePlugin.getTheSystemRegistry();
registry.addSystemResourceChangeListener(this); registry.addSystemResourceChangeListener(this);