Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2004-04-12 17:22:48 +0000
committerMichael Valenta2004-04-12 17:22:48 +0000
commit33838b840d67149069e29235d1881f178582e2cd (patch)
treea664f5f47f7fa0ec0874917c0cd282fe20c1322f /bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoriesView.java
parent90556cc9f3afb0c5cb2efbf9bf4ad90bba5863e5 (diff)
downloadeclipse.platform.team-33838b840d67149069e29235d1881f178582e2cd.tar.gz
eclipse.platform.team-33838b840d67149069e29235d1881f178582e2cd.tar.xz
eclipse.platform.team-33838b840d67149069e29235d1881f178582e2cd.zip
8470: [CVS UI] Date support in check out, compare...
Diffstat (limited to 'bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoriesView.java')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoriesView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoriesView.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoriesView.java
index b6e42f08e..80cbd49b4 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoriesView.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoriesView.java
@@ -157,7 +157,6 @@ public class RepositoriesView extends RemoteViewPart {
protected void addWorkbenchActions(IMenuManager manager) {
// New actions go next
MenuManager sub = new MenuManager(Policy.bind("RepositoriesView.newSubmenu"), IWorkbenchActionConstants.GROUP_ADD); //$NON-NLS-1$
- sub.add(new Separator(IWorkbenchActionConstants.MB_ADDITIONS));
manager.add(sub);
super.addWorkbenchActions(manager);
IStructuredSelection selection = (IStructuredSelection)getViewer().getSelection();
@@ -173,7 +172,8 @@ public class RepositoriesView extends RemoteViewPart {
}
sub.add(newAction);
if (newAnonAction != null)
- sub.add(newAnonAction);
+ sub.add(newAnonAction);
+ sub.add(new Separator("group1"));
}
/*

Back to the top