Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmoore2010-05-19 20:32:57 +0000
committerkmoore2010-05-19 20:32:57 +0000
commit811bf3ab8be2b2d88784f51ecad51f69a8c81f88 (patch)
tree5fe88666f2ef91cb91b7edcf7ec9552392f3b038
parent84283ab8abe04d87ddabf98a743202e62c9c43a6 (diff)
downloadwebtools.dali-811bf3ab8be2b2d88784f51ecad51f69a8c81f88.tar.gz
webtools.dali-811bf3ab8be2b2d88784f51ecad51f69a8c81f88.tar.xz
webtools.dali-811bf3ab8be2b2d88784f51ecad51f69a8c81f88.zip
270982 - Entity Generation - Select Tables dialog does not update schema combo after adding new connection
-rw-r--r--jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/wizards/gen/DatabaseGroup.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/wizards/gen/DatabaseGroup.java b/jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/wizards/gen/DatabaseGroup.java
index b98381709d..99cd0c4470 100644
--- a/jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/wizards/gen/DatabaseGroup.java
+++ b/jpa/plugins/org.eclipse.jpt.ui/src/org/eclipse/jpt/ui/internal/wizards/gen/DatabaseGroup.java
@@ -295,9 +295,9 @@ public class DatabaseGroup
this.selectedConnectionProfile.addConnectionListener(this.connectionListener);
this.updateConnectionComboBox();
this.selectedConnectionProfile.connect();
- this.updateSchemaComboBox();
// everything else should be synchronized when we get the resulting open event
this.fireConnectionProfileChanged(this.selectedConnectionProfile);
+ this.updateSchemaComboBox();
}
void reconnect() {

Back to the top