summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Heidrich <fheidric>2008-05-30 20:26:11 +0000
committerFelipe Heidrich <fheidric>2008-05-30 20:26:11 +0000
commit99b4b8d1e2c60a609e05fea08b649f93dd15cfc9 (patch)
tree03fc26ec340282f5c5ffeff319579f83fb4a811e
parent52672798651ded9b8506bbfc82e3c3aed7f4421a (diff)
downloadeclipse.platform.swt-99b4b8d1e2c60a609e05fea08b649f93dd15cfc9.tar.gz
eclipse.platform.swt-99b4b8d1e2c60a609e05fea08b649f93dd15cfc9.tar.xz
eclipse.platform.swt-99b4b8d1e2c60a609e05fea08b649f93dd15cfc9.zip
*** empty log message ***
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/IME.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/IME.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/IME.java
index 34188acf33..7fd0ab1e58 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/IME.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/IME.java
@@ -221,9 +221,9 @@ TF_DISPLAYATTRIBUTE getDisplayAttribute (short langid, int attInfo) {
* Returns the ranges for the style that should be applied during the
* in-line edit session.
* <p>
- * The ranges array contains start and length pairs. Each pair refers to
+ * The ranges array contains start and end pairs. Each pair refers to
* the corresponding style in the styles array. For example, the pair
- * that starts at ranges[n] with length ranges[n+1] uses the style
+ * that starts at ranges[n] and ends at ranges[n+1] uses the style
* at styles[n/2] returned by <code>getStyles()</code>.
* </p>
* @return the ranges for the styles
@@ -248,9 +248,9 @@ public int [] getRanges () {
/**
* Returns the styles for the ranges.
* <p>
- * The ranges array contains start and length pairs. Each pair refers to
+ * The ranges array contains start and end pairs. Each pair refers to
* the corresponding style in the styles array. For example, the pair
- * that starts at ranges[n] with length ranges[n+1] uses the style
+ * that starts at ranges[n] and ends at ranges[n+1] uses the style
* at styles[n/2].
* </p>
*