Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Michel-Lemieux2004-03-03 13:42:55 +0000
committerJean Michel-Lemieux2004-03-03 13:42:55 +0000
commitff7d591fde163990ff5785a88f7a656d86e17835 (patch)
tree70318fe0ef06fec7fdcc878ae40c5c2fb22c9655
parent022f93e30e6a9d22a31b415d1884788cb3adc501 (diff)
downloadeclipse.platform.team-branch_20040301_CVSCompareR30Work.tar.gz
eclipse.platform.team-branch_20040301_CVSCompareR30Work.tar.xz
eclipse.platform.team-branch_20040301_CVSCompareR30Work.zip
*** empty log message ***branch_20040301_CVSCompareR30Work
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/CompareWithTagAction.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/CompareWithTagAction.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/CompareWithTagAction.java
index 2020d6b55..b6ddddee5 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/CompareWithTagAction.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/CompareWithTagAction.java
@@ -80,10 +80,14 @@ public class CompareWithTagAction extends WorkspaceAction {
}
}
- protected void compareAndOpenDialog(IRefreshEvent event, CompareParticipant participant) {
+ protected void compareAndOpenDialog(final IRefreshEvent event, CompareParticipant participant) {
TreeViewerAdvisor advisor = new TreeViewerAdvisor(participant.getId(), participant.getSubscriberSyncInfoCollector().getSyncInfoTree());
CompareConfiguration cc = new CompareConfiguration();
- SynchronizeCompareInput input = new SynchronizeCompareInput(cc, advisor);
+ SynchronizeCompareInput input = new SynchronizeCompareInput(cc, advisor) {
+ public String getTitle() {
+ return "CVS Comparison (" + event.getChanges().length + " changes)";
+ }
+ };
try {
input.run(new NullProgressMonitor());
} catch (InterruptedException e) {

Back to the top