Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2003-12-02 20:23:49 +0000
committerDarin Swanson2003-12-02 20:23:49 +0000
commit66fa28ef8e3fce267450814d1a317d1266419fe0 (patch)
tree87e0c074548be5785e2f1fd41e57f8dd9a6994a0 /org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTab.java
parentf44f30384e59c653ef63e069a0756caa570d8d03 (diff)
downloadeclipse.platform.debug-66fa28ef8e3fce267450814d1a317d1266419fe0.tar.gz
eclipse.platform.debug-66fa28ef8e3fce267450814d1a317d1266419fe0.tar.xz
eclipse.platform.debug-66fa28ef8e3fce267450814d1a317d1266419fe0.zip
Javadoc spelling
Bug 47289 - Ant UI giving wrong error message Bug 39768 - Red X on JRE tab when no error
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTab.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTab.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTab.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTab.java
index 6494dcb06..18f0dc406 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTab.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractLaunchConfigurationTab.java
@@ -59,9 +59,9 @@ public abstract class AbstractLaunchConfigurationTab implements ILaunchConfigura
/**
* Whether this tab needs to apply changes. This attribute is initialized to
- * <code>true</code> to be backwards compatible. If clients want to take adavantage
+ * <code>true</code> to be backwards compatible. If clients want to take advantage
* of such a feature, they should set the flag to false, and check it before
- * applying changes to the lanuch configuration working copy.
+ * applying changes to the launch configuration working copy.
*
* @since 2.1
*/
@@ -83,8 +83,8 @@ public abstract class AbstractLaunchConfigurationTab implements ILaunchConfigura
*/
protected void updateLaunchConfigurationDialog() {
if (getLaunchConfigurationDialog() != null) {
- getLaunchConfigurationDialog().updateMessage();
getLaunchConfigurationDialog().updateButtons();
+ getLaunchConfigurationDialog().updateMessage();
}
}

Back to the top