Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Weinand2004-05-27 15:09:42 +0000
committerAndre Weinand2004-05-27 15:09:42 +0000
commit2df30ca56ddedb50ac6bb446da08d9c7b48001e3 (patch)
tree181d6336420b462101b98961fda78796b3a1b32d
parentb8d98bda1d5d96832d59e26440fe2caf92e3933e (diff)
downloadeclipse.platform.team-2df30ca56ddedb50ac6bb446da08d9c7b48001e3.tar.gz
eclipse.platform.team-2df30ca56ddedb50ac6bb446da08d9c7b48001e3.tar.xz
eclipse.platform.team-2df30ca56ddedb50ac6bb446da08d9c7b48001e3.zip
fixed #62356
-rw-r--r--bundles/org.eclipse.compare/buildnotes_compare.html12
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareUIPlugin.java2
-rw-r--r--bundles/org.eclipse.compare/plugins/org.eclipse.compare/buildnotes_compare.html12
-rw-r--r--bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareUIPlugin.java2
4 files changed, 24 insertions, 4 deletions
diff --git a/bundles/org.eclipse.compare/buildnotes_compare.html b/bundles/org.eclipse.compare/buildnotes_compare.html
index 1a48f6092..139034d5a 100644
--- a/bundles/org.eclipse.compare/buildnotes_compare.html
+++ b/bundles/org.eclipse.compare/buildnotes_compare.html
@@ -8,15 +8,25 @@
</head>
<body>
-
<h1>
Eclipse Platform Build Notes<br>
Compare</h1>
+Eclipse Build Input May 27th 2004
+
+<h2>
+Problem reports fixed</h2>
+<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=62356">#62356</a>: Use progress service when running compare input<br>
+
+
+<h1>
+<hr WIDTH="100%"></h1>
Eclipse Build Input May 25th 2004
<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=63610">#63610</a>: Colors and Fonts: Text Compare Appearance -&gt; Text Compare<br>
+<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=61996">#61996</a>: bad idea to subclass Error for ordinary exceptions<br>
+
<h1>
<hr WIDTH="100%"></h1>
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareUIPlugin.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareUIPlugin.java
index ece05fb69..d9a4d81ec 100644
--- a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareUIPlugin.java
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareUIPlugin.java
@@ -502,7 +502,7 @@ public final class CompareUIPlugin extends AbstractUIPlugin {
try {
// run operation in separate thread and make it canceable
- new ProgressMonitorDialog(shell).run(true, true, input);
+ PlatformUI.getWorkbench().getProgressService().run(true, true, input);
String message= input.getMessage();
if (message != null) {
diff --git a/bundles/org.eclipse.compare/plugins/org.eclipse.compare/buildnotes_compare.html b/bundles/org.eclipse.compare/plugins/org.eclipse.compare/buildnotes_compare.html
index 1a48f6092..139034d5a 100644
--- a/bundles/org.eclipse.compare/plugins/org.eclipse.compare/buildnotes_compare.html
+++ b/bundles/org.eclipse.compare/plugins/org.eclipse.compare/buildnotes_compare.html
@@ -8,15 +8,25 @@
</head>
<body>
-
<h1>
Eclipse Platform Build Notes<br>
Compare</h1>
+Eclipse Build Input May 27th 2004
+
+<h2>
+Problem reports fixed</h2>
+<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=62356">#62356</a>: Use progress service when running compare input<br>
+
+
+<h1>
+<hr WIDTH="100%"></h1>
Eclipse Build Input May 25th 2004
<h2>
Problem reports fixed</h2>
<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=63610">#63610</a>: Colors and Fonts: Text Compare Appearance -&gt; Text Compare<br>
+<a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=61996">#61996</a>: bad idea to subclass Error for ordinary exceptions<br>
+
<h1>
<hr WIDTH="100%"></h1>
diff --git a/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareUIPlugin.java b/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareUIPlugin.java
index ece05fb69..d9a4d81ec 100644
--- a/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareUIPlugin.java
+++ b/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareUIPlugin.java
@@ -502,7 +502,7 @@ public final class CompareUIPlugin extends AbstractUIPlugin {
try {
// run operation in separate thread and make it canceable
- new ProgressMonitorDialog(shell).run(true, true, input);
+ PlatformUI.getWorkbench().getProgressService().run(true, true, input);
String message= input.getMessage();
if (message != null) {

Back to the top