From 0d2fe3df1d4a2411b33d2afcad5a3e6e4803db87 Mon Sep 17 00:00:00 2001 From: David Dykstal Date: Fri, 8 Jun 2007 13:25:01 +0000 Subject: [PATCH] [191311] enable global properties action --- .../UI/org/eclipse/rse/internal/ui/view/SystemViewPart.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemViewPart.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemViewPart.java index 3de21e08270..bbd4d55e609 100644 --- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemViewPart.java +++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemViewPart.java @@ -21,6 +21,7 @@ * Martin Oberhuber (Wind River) - [186779] Fix IRSESystemType.getAdapter() * Martin Oberhuber (Wind River) - [190195] Cannot enable new connection prompt in system view * Martin Oberhuber (Wind River) - [190271] Move ISystemViewInputProvider to Core + * David Dykstal (IBM) - [191311] enable global properties action ********************************************************************************/ package org.eclipse.rse.internal.ui.view; @@ -393,10 +394,8 @@ public class SystemViewPart if (actionBars != null) { actionBars.setGlobalActionHandler(ActionFactory.DELETE.getId(), systemView.getDeleteAction()); - //SystemCommonSelectAllAction selAllAction = new SystemCommonSelectAllAction(getShell(), systemView, systemView); actionBars.setGlobalActionHandler(ActionFactory.SELECT_ALL.getId(), systemView.getSelectAllAction()); - // added by Phil in 3.0 ... - //actionBars.setGlobalActionHandler(IWorkbenchActionConstants.PROPERTIES, systemView.getPropertyDialogAction(); hmm, different one for local vs remote objects + actionBars.setGlobalActionHandler(ActionFactory.PROPERTIES.getId(), systemView.getPropertyDialogAction()); actionBars.setGlobalActionHandler(ActionFactory.REFRESH.getId(), systemView.getRefreshAction()); actionBars.setGlobalActionHandler(ActionFactory.RENAME.getId(), systemView.getRenameAction());