1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-29 11:13:34 +02:00

[210229] table refresh needs unique table-specific tooltip-text

This commit is contained in:
David McKnight 2007-11-26 20:39:08 +00:00
parent 758b88873e
commit 8d748bb207
3 changed files with 10 additions and 1 deletions

View file

@ -13,6 +13,7 @@
* Contributors: * Contributors:
* Martin Oberhuber (Wind River) - [181066] NLS missing messages with DAEMON and Shells * Martin Oberhuber (Wind River) - [181066] NLS missing messages with DAEMON and Shells
* Martin Oberhuber (Wind River) - [185552] Remove remoteSystemsViewPreferencesActions extension point * Martin Oberhuber (Wind River) - [185552] Remove remoteSystemsViewPreferencesActions extension point
* David McKnight (IBM) - [210229] table refresh needs unique table-specific tooltip-text
********************************************************************************/ ********************************************************************************/
package org.eclipse.rse.internal.ui; package org.eclipse.rse.internal.ui;
@ -980,6 +981,8 @@ public class SystemResources extends NLS
public static String ACTION_REFRESH_LABEL; public static String ACTION_REFRESH_LABEL;
public static String ACTION_REFRESH_TOOLTIP; public static String ACTION_REFRESH_TOOLTIP;
public static String ACTION_REFRESH_TABLE_LABLE;
public static String ACTION_REFRESH_TABLE_TOOLTIP;
public static String ACTION_DELETE_LABEL; public static String ACTION_DELETE_LABEL;
public static String ACTION_DELETE_TOOLTIP; public static String ACTION_DELETE_TOOLTIP;

View file

@ -12,6 +12,7 @@
# #
# Contributors: # Contributors:
# Martin Oberhuber (Wind River) - [185552] Remove remoteSystemsViewPreferencesActions extension point # Martin Oberhuber (Wind River) - [185552] Remove remoteSystemsViewPreferencesActions extension point
# David McKnight (IBM) - [210229] table refresh needs unique table-specific tooltip-text
################################################################################ ################################################################################
# NLS_MESSAGEFORMAT_VAR # NLS_MESSAGEFORMAT_VAR
@ -896,6 +897,9 @@ ACTION_REFRESH_ALL_TOOLTIP=Refresh all resource information
ACTION_REFRESH_LABEL=Re&fresh ACTION_REFRESH_LABEL=Re&fresh
ACTION_REFRESH_TOOLTIP=Refresh information of selected resource ACTION_REFRESH_TOOLTIP=Refresh information of selected resource
ACTION_REFRESH_TABLE_LABLE=Refresh
ACTION_REFRESH_TABLE_TOOLTIP=Refresh the contents of the table
ACTION_DELETE_LABEL=Delete... ACTION_DELETE_LABEL=Delete...
ACTION_DELETE_TOOLTIP=Prompts for confirmation to delete selected resources ACTION_DELETE_TOOLTIP=Prompts for confirmation to delete selected resources

View file

@ -24,6 +24,7 @@
* Kevin Doyle (IBM) - [197971] NPE when table has no input and doing commands in Systems View * Kevin Doyle (IBM) - [197971] NPE when table has no input and doing commands in Systems View
* Martin Oberhuber (Wind River) - [199585] Fix NPE during testConnectionRemoval unit test * Martin Oberhuber (Wind River) - [199585] Fix NPE during testConnectionRemoval unit test
* David McKnight (IBM) - [187543] use view filter to only show containers for set input dialog * David McKnight (IBM) - [187543] use view filter to only show containers for set input dialog
* David McKnight (IBM) - [210229] table refresh needs unique table-specific tooltip-text
********************************************************************************/ ********************************************************************************/
package org.eclipse.rse.internal.ui.view; package org.eclipse.rse.internal.ui.view;
@ -343,9 +344,10 @@ public class SystemTableViewPart extends ViewPart
{ {
public RefreshAction() public RefreshAction()
{ {
super(SystemResources.ACTION_REFRESH_LABEL, super(SystemResources.ACTION_REFRESH_TABLE_LABLE,
//RSEUIPlugin.getDefault().getImageDescriptor(ICON_SYSTEM_REFRESH_ID)); //RSEUIPlugin.getDefault().getImageDescriptor(ICON_SYSTEM_REFRESH_ID));
RSEUIPlugin.getDefault().getImageDescriptor(ISystemIconConstants.ICON_SYSTEM_REFRESH_ID)); RSEUIPlugin.getDefault().getImageDescriptor(ISystemIconConstants.ICON_SYSTEM_REFRESH_ID));
setToolTipText(SystemResources.ACTION_REFRESH_TABLE_TOOLTIP);
} }
public void run() public void run()