Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordeboer2005-10-27 14:09:38 +0000
committerdeboer2005-10-27 14:09:38 +0000
commit977f53099f46aa172a48f57d359c16f9007ebd9f (patch)
treed281c2799de9134b2e8444fdf7bf390bc0adf7aa /plugins/org.eclipse.wst.server.ui
parent6c8fa2805a8b2dd7f39d27587bdafa4d94ab36d9 (diff)
downloadwebtools.servertools-977f53099f46aa172a48f57d359c16f9007ebd9f.tar.gz
webtools.servertools-977f53099f46aa172a48f57d359c16f9007ebd9f.tar.xz
webtools.servertools-977f53099f46aa172a48f57d359c16f9007ebd9f.zip
[112729] Tomcat utility projects
Diffstat (limited to 'plugins/org.eclipse.wst.server.ui')
-rw-r--r--plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/Messages.properties2
-rw-r--r--plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/RuntimeTargetComposite.java1
2 files changed, 2 insertions, 1 deletions
diff --git a/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/Messages.properties b/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/Messages.properties
index 8434b7f84..30e0139a9 100644
--- a/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/Messages.properties
+++ b/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/Messages.properties
@@ -242,7 +242,7 @@ runtimeTargetCombo=&Target runtime:
runtimeTargetNone=<None>
runtimeTargetNewRuntime=&New...
runtimeTargetRuntimePreferences=Configure &Installed Runtimes...
-runtimeTargetChildren=Include child projects
+runtimeTargetChildren=Target contained projects
# General dialogs
defaultDialogTitle=Server
diff --git a/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/RuntimeTargetComposite.java b/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/RuntimeTargetComposite.java
index 953dad7af..52714b8a2 100644
--- a/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/RuntimeTargetComposite.java
+++ b/plugins/org.eclipse.wst.server.ui/serverui/org/eclipse/wst/server/ui/internal/RuntimeTargetComposite.java
@@ -163,6 +163,7 @@ public class RuntimeTargetComposite {
includeChildren.setText(Messages.runtimeTargetChildren);
data = new GridData();
data.horizontalSpan = 2;
+ data.horizontalIndent = 15;
includeChildren.setLayoutData(data);
includeChildren.setSelection(true);

Back to the top