Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Northover2002-02-13 21:28:02 +0000
committerSteve Northover2002-02-13 21:28:02 +0000
commitea315ca8d7575f9368fb2f415ba15867a5e77799 (patch)
tree8fc278b5e8bf40a8b9bfbb5e9de355ae160667a5 /bundles/org.eclipse.swt
parent652ce7caeb5154322b263732f35e70e25bf4b7f3 (diff)
downloadeclipse.platform.swt-ea315ca8d7575f9368fb2f415ba15867a5e77799.tar.gz
eclipse.platform.swt-ea315ca8d7575f9368fb2f415ba15867a5e77799.tar.xz
eclipse.platform.swt-ea315ca8d7575f9368fb2f415ba15867a5e77799.zip
*** empty log message ***
Diffstat (limited to 'bundles/org.eclipse.swt')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormLayout.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormLayout.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormLayout.java
index 4d229c833e..ab5ca9a0b2 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormLayout.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormLayout.java
@@ -50,9 +50,10 @@ import org.eclipse.swt.widgets.*;
* creating instances of <code>FormAttachment</code> and setting them into
* the top, bottom, left, and right fields of the child's <code>FormData</code>.
* </p>
+ * <p>
* If a side is not given an attachment, it is defined as not being attached
* to anything, causing the child to remain at it's preferred size. If a child
- * is given no attachemts on either the left or the right or top or bottom, it is
+ * is given no attachments on either the left or the right or top or bottom, it is
* automatically attached to the left and top of the composite respectively.
* The following code positions <code>button1</code> and <code>button2</code>
* but relies on default attachments:
@@ -64,7 +65,6 @@ import org.eclipse.swt.widgets.*;
* button2.setLayoutData(data2);
* </pre>
* </p>
- * <p>
*
* @see FormData
* @see FormAttachment

Back to the top