summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2005-06-21 18:48:05 +0000
committerCarolyn MacLeod <carolyn>2005-06-21 18:48:05 +0000
commitb65ea803613e5e85e97de7c01ac295b7c68fa954 (patch)
tree7987c800f830b34d0c1c4869cba87296f4e51af4
parent03b2434a9978fa54eb996a51c7fdd80da2045f21 (diff)
downloadeclipse.platform.swt-b65ea803613e5e85e97de7c01ac295b7c68fa954.tar.gz
eclipse.platform.swt-b65ea803613e5e85e97de7c01ac295b7c68fa954.tar.xz
eclipse.platform.swt-b65ea803613e5e85e97de7c01ac295b7c68fa954.zip
doc: bug 84906
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java6
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java6
2 files changed, 6 insertions, 6 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java
index bbfa641e13..26c9a68a42 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java
@@ -1047,7 +1047,7 @@ public void setImages (Image [] images) {
* causes the receiver to switch back to either the minimized
* or normal states.
* <p>
- * Note: The result of intermixing calls to<code>setMaximized(true)</code>
+ * Note: The result of intermixing calls to <code>setMaximized(true)</code>
* and <code>setMinimized(true)</code> will vary by platform. Typically,
* the behavior will match the platform user's expectations, but not
* always. This should be avoided if possible.
@@ -1167,7 +1167,7 @@ public void setMenuBar (Menu menu) {
* causes the receiver to switch back to either the maximized
* or normal states.
* <p>
- * Note: The result of intermixing calls to<code>setMaximized(true)</code>
+ * Note: The result of intermixing calls to <code>setMaximized(true)</code>
* and <code>setMinimized(true)</code> will vary by platform. Typically,
* the behavior will match the platform user's expectations, but not
* always. This should be avoided if possible.
@@ -1317,7 +1317,7 @@ void setSystemMenu () {
/**
* Sets the receiver's text, which is the string that the
* window manager will typically display as the receiver's
- * <em>title</em>, to the argument, which may not be null.
+ * <em>title</em>, to the argument, which must not be null.
*
* @param string the new text
*
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
index 014d7ad104..6e859fd089 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
@@ -1202,7 +1202,7 @@ static boolean isValidClass (Class clazz) {
* Applications may have associated arbitrary objects with the
* receiver in this fashion. If the objects stored in the
* properties need to be notified when the display is disposed
- * of, it is the application's responsibility provide a
+ * of, it is the application's responsibility to provide a
* <code>disposeExec()</code> handler which does so.
* </p>
*
@@ -1239,7 +1239,7 @@ public Object getData (String key) {
* Applications may put arbitrary objects in this field. If
* the object stored in the display specific data needs to
* be notified when the display is disposed of, it is the
- * application's responsibility provide a
+ * application's responsibility to provide a
* <code>disposeExec()</code> handler which does so.
* </p>
*
@@ -3607,7 +3607,7 @@ void updateFont () {
}
/**
- * If the receiver's user-interface thread was <code>sleep</code>'ing,
+ * If the receiver's user-interface thread was <code>sleep</code>ing,
* causes it to be awakened and start running again. Note that this
* method may be called from any thread.
*