Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2002-05-17 15:03:21 +0000
committerMichael Valenta2002-05-17 15:03:21 +0000
commitc991e49510c4a8c170729f99e91024995a7bb4eb (patch)
treebc8cb10e43a5e1bc8573bb0b55065c2afc251709
parentdb797aa9ed55d94f1f32e44eca7b03c4fad87b52 (diff)
downloadeclipse.platform.team-c991e49510c4a8c170729f99e91024995a7bb4eb.tar.gz
eclipse.platform.team-c991e49510c4a8c170729f99e91024995a7bb4eb.tar.xz
eclipse.platform.team-c991e49510c4a8c170729f99e91024995a7bb4eb.zip
Fixed invalid thread access
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSRepositoryPropertiesPage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSRepositoryPropertiesPage.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSRepositoryPropertiesPage.java
index a31e9ec78..efe42d63b 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSRepositoryPropertiesPage.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSRepositoryPropertiesPage.java
@@ -213,7 +213,7 @@ public class CVSRepositoryPropertiesPage extends PropertyPage {
final String password = passwordText.getText();
final boolean[] result = new boolean[] { false };
try {
- new ProgressMonitorDialog(getShell()).run(true, false, new IRunnableWithProgress() {
+ new ProgressMonitorDialog(getShell()).run(false, false, new IRunnableWithProgress() {
public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
try {
// Check if the password was the only thing to change.

Back to the top