summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2007-05-30 18:14:06 +0000
committerCarolyn MacLeod <carolyn>2007-05-30 18:14:06 +0000
commita6dd19bd82c4b1cbadd377f88658da67632b8c82 (patch)
tree8f099e58969ae35f6517d3c001984c39dc37db1f /bundles/org.eclipse.swt
parent2284142d8b6370201eacb1b7d0a1fda9f9d19bdf (diff)
downloadeclipse.platform.swt-a6dd19bd82c4b1cbadd377f88658da67632b8c82.tar.gz
eclipse.platform.swt-a6dd19bd82c4b1cbadd377f88658da67632b8c82.tar.xz
eclipse.platform.swt-a6dd19bd82c4b1cbadd377f88658da67632b8c82.zip
javadoc - fix html errors & spelling
Diffstat (limited to 'bundles/org.eclipse.swt')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
index d1e042910a..fa1dcdf0ce 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
@@ -83,7 +83,7 @@ public final class TextLayout extends Resource {
int leading;
int x;
- /* Justily info (malloc during computeRuns) */
+ /* Justify info (malloc during computeRuns) */
int justify;
/* ScriptBreak */
@@ -1150,7 +1150,7 @@ int getItemFont (StyleItem item) {
* embedding level is usually used to determine the directionality of a
* character in bidirectional text.
*
- * @param offset the charecter offset
+ * @param offset the character offset
* @return the embedding level
*
* @exception IllegalArgumentException <ul>
@@ -2426,7 +2426,7 @@ void shape (final int hdc, final StyleItem run) {
GlyphMetrics metrics = run.style.metrics;
/*
* Bug in Windows, on a Japanese machine, Uniscribe returns glyphcount
- * equals zero for FFFC (possibily other unicode code points), the fix
+ * equals zero for FFFC (possibly other unicode code points), the fix
* is to make sure the glyph is at least one pixel wide.
*/
run.width = metrics.width * Math.max (1, run.glyphCount);