Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjames2002-08-01 14:56:07 +0000
committerjames2002-08-01 14:56:07 +0000
commit313ea54f8dabe7eaa9737c5ef6aa65a3b3da7ce9 (patch)
treef44b735f7d300505868fe93725b4afdf0ccf1c32
parent7f743773eda62d3e792a448ff50787f62f6c2b64 (diff)
downloadeclipse.platform.team-313ea54f8dabe7eaa9737c5ef6aa65a3b3da7ce9.tar.gz
eclipse.platform.team-313ea54f8dabe7eaa9737c5ef6aa65a3b3da7ce9.tar.xz
eclipse.platform.team-313ea54f8dabe7eaa9737c5ef6aa65a3b3da7ce9.zip
21436: CVS Quick connect to dev.eclipse.org - only when PDE available
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/RepositoriesView.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/RepositoriesView.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/RepositoriesView.java
index 08ef7b75f..a1de08009 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/RepositoriesView.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/RepositoriesView.java
@@ -134,7 +134,7 @@ public class RepositoriesView extends ViewPart {
};
WorkbenchHelp.setHelp(newAction, IHelpContextIds.NEW_REPOSITORY_LOCATION_ACTION);
- final Action newAnonAction = new Action(Policy.bind("RepositoriesView.newAnonCVS"), CVSUIPlugin.getPlugin().getImageDescriptor(ICVSUIConstants.IMG_NEWLOCATION)) { //$NON-NLS-1$
+/* final Action newAnonAction = new Action(Policy.bind("RepositoriesView.newAnonCVS"), CVSUIPlugin.getPlugin().getImageDescriptor(ICVSUIConstants.IMG_NEWLOCATION)) { //$NON-NLS-1$
public void run() {
Properties p = new Properties();
p.setProperty("connection", "pserver"); //$NON-NLS-1$ //$NON-NLS-2$
@@ -147,7 +147,7 @@ public class RepositoriesView extends ViewPart {
}
};
WorkbenchHelp.setHelp(newAnonAction, IHelpContextIds.NEW_DEV_ECLIPSE_REPOSITORY_LOCATION_ACTION);
-
+*/
// Properties
propertiesAction = new PropertyDialogAction(shell, viewer);
getViewSite().getActionBars().setGlobalActionHandler(IWorkbenchActionConstants.PROPERTIES, propertiesAction);
@@ -192,7 +192,7 @@ public class RepositoriesView extends ViewPart {
manager.add(propertiesAction);
}
sub.add(newAction);
- sub.add(newAnonAction);
+ //sub.add(newAnonAction);
}
});
menuMgr.setRemoveAllWhenShown(true);

Back to the top