summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2010-11-08 19:59:54 +0000
committerCarolyn MacLeod <carolyn>2010-11-08 19:59:54 +0000
commite2096cd15fb807ab25cf7109265f2231ca329806 (patch)
tree797f9b21376ed7417f0a84acd34b26e64c506f58
parent57980e3767ce7276484e881c23ee01f6d7b9420f (diff)
downloadeclipse.platform.swt-e2096cd15fb807ab25cf7109265f2231ca329806.tar.gz
eclipse.platform.swt-e2096cd15fb807ab25cf7109265f2231ca329806.tar.xz
eclipse.platform.swt-e2096cd15fb807ab25cf7109265f2231ca329806.zip
missing ; for text-line-through-type in get_attributes
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java
index 9c68920b1f..e3cbd41ebd 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java
@@ -4064,7 +4064,7 @@ public class Accessible {
// style.underlineColor is not currently part of the IA2 spec. If provided, it would be "text-underline-color:rgb(n,n,n);"
}
if (style.strikeout) {
- textAttributes += "text-line-through-type:single";
+ textAttributes += "text-line-through-type:single;";
// style.strikeoutColor is not currently part of the IA2 spec. If provided, it would be "text-line-through-color:rgb(n,n,n);"
}
Font font = style.font;