Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Heidrich2012-02-01 16:09:12 +0000
committerFelipe Heidrich2012-02-01 16:14:45 +0000
commit4b2aecb71f54c184e8ee8ca9bf6d67941caf9780 (patch)
tree22fa0117b7ad6d9d9e557c7af5b855e60203e730
parent442b778a907836e56f477706a2d1ac6bfa6d0970 (diff)
downloadeclipse.platform.swt-4b2aecb71f54c184e8ee8ca9bf6d67941caf9780.tar.gz
eclipse.platform.swt-4b2aecb71f54c184e8ee8ca9bf6d67941caf9780.tar.xz
eclipse.platform.swt-4b2aecb71f54c184e8ee8ca9bf6d67941caf9780.zip
Bug 368710 - ProgressBar created with SWT.INDETERMINATE does not pause on Windows XP
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ProgressBar.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ProgressBar.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ProgressBar.java
index 46023b78d4..d2bf5f051e 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ProgressBar.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ProgressBar.java
@@ -337,7 +337,11 @@ public void setSelection (int value) {
* <li>{@link SWT#ERROR}</li>
* <li>{@link SWT#PAUSED}</li>
* </ul>
- *
+ * <p>
+ * Note: This operation is a hint and is not supported on
+ * platforms that do not have this concept.
+ * </p>
+ *
* @param state the new state
*
* @exception SWTException <ul>

Back to the top