Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Gayed2005-06-28 21:25:01 +0000
committerGrant Gayed2005-06-28 21:25:01 +0000
commitdd5d27ae2bd4eb2cc73da0a3725fc80f024c4ac2 (patch)
treef2c05c226940aa0750dd318b846f51b68f3385bf /bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/FileDialog.java
parente906fe74fb9b7952dab4aec6ddfa7b2b93bc0df2 (diff)
downloadeclipse.platform.swt-dd5d27ae2bd4eb2cc73da0a3725fc80f024c4ac2.tar.gz
eclipse.platform.swt-dd5d27ae2bd4eb2cc73da0a3725fc80f024c4ac2.tar.xz
eclipse.platform.swt-dd5d27ae2bd4eb2cc73da0a3725fc80f024c4ac2.zip
77194
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/FileDialog.java')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/FileDialog.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/FileDialog.java b/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/FileDialog.java
index eb669320b7..5840a0bb7f 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/FileDialog.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/FileDialog.java
@@ -400,8 +400,8 @@ public String open () {
OS.XmNdefaultPosition, defaultPos ? 1 : 0,
};
/*
- * Bug in AIX. The dialog does not responde to input, if the parent
- * is not realized. The fix is to realized the parent.
+ * Bug in AIX. The dialog does not respond to input, if the parent
+ * is not realized. The fix is to realize the parent.
*/
if (OS.IsAIX) parent.realizeWidget ();
int parentHandle = parent.shellHandle;

Back to the top