Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpfullbright2009-03-16 17:40:10 +0000
committerpfullbright2009-03-16 17:40:10 +0000
commitd8cdf44af450be62b46a668000601a77cb154a32 (patch)
treebb3c1c1fb11bcebf16b4b9ff1c5caa693f086542 /jpa/plugins/org.eclipse.jpt.core/src
parentc666094094f1641c8dda4ef9797f893fa73c4a9a (diff)
downloadwebtools.dali-d8cdf44af450be62b46a668000601a77cb154a32.tar.gz
webtools.dali-d8cdf44af450be62b46a668000601a77cb154a32.tar.xz
webtools.dali-d8cdf44af450be62b46a668000601a77cb154a32.zip
fix for bug 267258
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/src')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/GenericJpaDataSource.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/GenericJpaDataSource.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/GenericJpaDataSource.java
index 2dea43ccbc..07295c5ac6 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/GenericJpaDataSource.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/GenericJpaDataSource.java
@@ -96,6 +96,7 @@ public class GenericJpaDataSource
this.firePropertyChanged(CONNECTION_PROFILE_NAME_PROPERTY, old, connectionProfileName);
// synch the connection profile when the name changes
this.setConnectionProfile(this.buildConnectionProfile(connectionProfileName));
+ JptCorePlugin.setConnectionProfileName(getJpaProject().getProject(), connectionProfileName);
}
}

Back to the top