Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2004-01-17 04:52:22 +0000
committerMichael Valenta2004-01-17 04:52:22 +0000
commitcf84ed050759831cfb62193476f539d0ff25c238 (patch)
treec092199f90fe9a705c7bf5050c810eb5e2239378 /bundles/org.eclipse.team.cvs.ui
parentddacd8dd27b46ad476771af5b8222bed6e846dcd (diff)
downloadeclipse.platform.team-cf84ed050759831cfb62193476f539d0ff25c238.tar.gz
eclipse.platform.team-cf84ed050759831cfb62193476f539d0ff25c238.tar.xz
eclipse.platform.team-cf84ed050759831cfb62193476f539d0ff25c238.zip
*** empty log message ***
Diffstat (limited to 'bundles/org.eclipse.team.cvs.ui')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ReleaseCommentDialog.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ReleaseCommentDialog.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ReleaseCommentDialog.java
index ca0c159a3..0a22443c6 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ReleaseCommentDialog.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ReleaseCommentDialog.java
@@ -29,8 +29,7 @@ import org.eclipse.swt.widgets.*;
import org.eclipse.team.core.subscribers.SyncInfo;
import org.eclipse.team.core.subscribers.SyncInfoFilter;
import org.eclipse.team.internal.ui.dialogs.DetailsDialog;
-import org.eclipse.team.ui.synchronize.SyncInfoSetCompareInput;
-import org.eclipse.team.ui.synchronize.TeamSubscriberParticipant;
+import org.eclipse.team.ui.synchronize.*;
import org.eclipse.ui.help.WorkbenchHelp;
/**
@@ -90,7 +89,8 @@ public class ReleaseCommentDialog extends DetailsDialog {
TeamSubscriberParticipant participant = CVSUIPlugin.getPlugin().getCvsWorkspaceSynchronizeParticipant();
SyncInfoFilter.SyncInfoDirectionFilter filter = new SyncInfoFilter.SyncInfoDirectionFilter(SyncInfo.OUTGOING);
- compareEditorInput = new SyncInfoSetCompareInput(cc, null, participant.getSyncInfoCollector().getSyncInfoSet());
+ compareEditorInput = new SyncInfoSetCompareInput(cc,
+ new SyncInfoDiffTreeViewerConfiguration(null, participant.getSyncInfoCollector().getSyncInfoSet()));
// set F1 help
WorkbenchHelp.setHelp(composite, IHelpContextIds.RELEASE_COMMENT_DIALOG);

Back to the top