Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Heidrich2011-06-29 14:48:56 +0000
committerFelipe Heidrich2011-06-29 14:48:56 +0000
commita662e410f76ecc0b2208caa45340c99b3e942f8d (patch)
treefded5f7fe9c0a92d52c205c1d83dbe66183971ae
parent0c84a0441417eacd902f73562e61fdfcbac04f3b (diff)
downloadeclipse.platform.swt-a662e410f76ecc0b2208caa45340c99b3e942f8d.tar.gz
eclipse.platform.swt-a662e410f76ecc0b2208caa45340c99b3e942f8d.tar.xz
eclipse.platform.swt-a662e410f76ecc0b2208caa45340c99b3e942f8d.zip
Bug 348761 - SWT.WRAP missing in Button JavaDoc
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java1
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java2
2 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java
index ae95091101..7a9a4a427c 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java
@@ -1221,6 +1221,7 @@ public class SWT {
/**
* Style constant for automatic line wrap behavior (value is 1<<6).
* <p><b>Used By:</b><ul>
+ * <li><code>Button</code></li>
* <li><code>Label</code></li>
* <li><code>Text</code></li>
* <li><code>ToolBar</code></li>
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java
index d68e3e595e..b0612c48a8 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java
@@ -22,7 +22,7 @@ import org.eclipse.swt.events.*;
* issues notification when pressed and released.
* <dl>
* <dt><b>Styles:</b></dt>
- * <dd>ARROW, CHECK, PUSH, RADIO, TOGGLE, FLAT</dd>
+ * <dd>ARROW, CHECK, PUSH, RADIO, TOGGLE, FLAT, WRAP</dd>
* <dd>UP, DOWN, LEFT, RIGHT, CENTER</dd>
* <dt><b>Events:</b></dt>
* <dd>Selection</dd>

Back to the top