summaryrefslogtreecommitdiffstats
path: root/bundles
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2007-05-30 18:15:43 +0000
committerCarolyn MacLeod <carolyn>2007-05-30 18:15:43 +0000
commit28850b68ad93f11a072a66b97a678a17aac0c282 (patch)
tree5e15c7c0b772177328f6dd0899fe5708169922c2 /bundles
parentaadc385ce564d526b4949018d19eb6576790c4b3 (diff)
downloadeclipse.platform.swt-28850b68ad93f11a072a66b97a678a17aac0c282.tar.gz
eclipse.platform.swt-28850b68ad93f11a072a66b97a678a17aac0c282.tar.xz
eclipse.platform.swt-28850b68ad93f11a072a66b97a678a17aac0c282.zip
javadoc - fix spelling
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/internal/BidiUtil.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/internal/BidiUtil.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/internal/BidiUtil.java
index 70476a9c5a..c4e36a58ab 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/internal/BidiUtil.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/internal/BidiUtil.java
@@ -159,7 +159,7 @@ public static void drawGlyphs(GC gc, char[] renderBuffer, int[] renderDx, int x,
* @param classBuffer an array of integers representing the type (e.g., ARABIC, HEBREW,
* LOCALNUMBER) of each character in the text array, input/output parameter
* @param dx an array of integers representing the pixel width of each glyph in the returned
- * glyph buffer, output paramteter
+ * glyph buffer, output parameter
* @param flags an integer representing rendering flag information, input parameter
* @param offsets text segments that should be measured and reordered separately, input
* parameter. See org.eclipse.swt.custom.BidiSegmentEvent for details.
@@ -497,7 +497,7 @@ public static void removeLanguageListener (int hwnd) {
}
/**
* Switch the keyboard language to the specified language type. We do
- * not distinguish between mulitple bidi or multiple non-bidi languages, so
+ * not distinguish between multiple bidi or multiple non-bidi languages, so
* set the keyboard to the first language of the given type.
* <p>
*
@@ -523,7 +523,7 @@ public static void setKeyboardLanguage(int language) {
// get the list of active languages
int[] list = getKeyboardLanguageList();
// set to the first non-bidi language (anything not
- // hebrew or arabic)
+ // Hebrew or Arabic)
for (int i=0; i<list.length; i++) {
int id = list[i] & 0x000000FF;
if ((id != LANG_HEBREW) && (id != LANG_ARABIC)) {