Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2007-09-10 18:54:03 +0000
committerMichael Valenta2007-09-10 18:54:03 +0000
commitd9e9a396aad7848f809c1db2a4610a5e7665f58f (patch)
tree76257dcf4e22856cd178438960d81c473489af46
parentd07cbe958aa1c7b42b2b091fbb78ef4b864b7dd4 (diff)
downloadeclipse.platform.team-d9e9a396aad7848f809c1db2a4610a5e7665f58f.tar.gz
eclipse.platform.team-d9e9a396aad7848f809c1db2a4610a5e7665f58f.tar.xz
eclipse.platform.team-d9e9a396aad7848f809c1db2a4610a5e7665f58f.zip
Bug 198319 handler conflict occurred between two team actions
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/CVSActionDelegateWrapper.java8
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/SharingWizardPageActionGroup.java2
2 files changed, 7 insertions, 3 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/CVSActionDelegateWrapper.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/CVSActionDelegateWrapper.java
index c17763c4b..974ead939 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/CVSActionDelegateWrapper.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/CVSActionDelegateWrapper.java
@@ -22,10 +22,14 @@ import org.eclipse.team.ui.synchronize.ISynchronizePageConfiguration;
*/
public class CVSActionDelegateWrapper extends ActionDelegateWrapper {
- public CVSActionDelegateWrapper(CVSAction delegate, ISynchronizePageConfiguration configuration) {
- super(delegate, configuration, delegate.getId());
+ public CVSActionDelegateWrapper(CVSAction delegate, ISynchronizePageConfiguration configuration, String id) {
+ super(delegate, configuration, id);
Utils.initAction(this, getBundleKeyPrefix(), Policy.getActionBundle());
}
+
+ public CVSActionDelegateWrapper(CVSAction delegate, ISynchronizePageConfiguration configuration) {
+ this(delegate, configuration, delegate.getId());
+ }
/**
* Return the key to the action text in the resource bundle.
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/SharingWizardPageActionGroup.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/SharingWizardPageActionGroup.java
index 8947193b9..ed6057e8a 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/SharingWizardPageActionGroup.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/SharingWizardPageActionGroup.java
@@ -32,7 +32,7 @@ public class SharingWizardPageActionGroup extends SynchronizePageActionGroup {
appendToGroup(
ISynchronizePageConfiguration.P_TOOLBAR_MENU,
ACTION_GROUP,
- new CVSActionDelegateWrapper(new IgnoreAction(), configuration){
+ new CVSActionDelegateWrapper(new IgnoreAction(), configuration, null /* no id to avoid conflict with context menu (bug 198319)*/){
protected String getBundleKeyPrefix() {
return "SharingWizardIgnore."; //$NON-NLS-1$
}

Back to the top