Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Pazderski2020-05-03 21:28:26 +0000
committerPaul Pazderski2020-05-04 08:44:07 +0000
commitf79f52a59b578f7c7ecc25db50de51f2008142de (patch)
tree96f8db05b3868d91cfc71736089ca22c809d01bc /bundles/org.eclipse.swt/Eclipse SWT PI
parentf20563c078bf1d75048739ccce601b6ab4756640 (diff)
downloadeclipse.platform.swt-f79f52a59b578f7c7ecc25db50de51f2008142de.tar.gz
eclipse.platform.swt-f79f52a59b578f7c7ecc25db50de51f2008142de.tar.xz
eclipse.platform.swt-f79f52a59b578f7c7ecc25db50de51f2008142de.zip
Bug 562754 - JNI code generation breaks on @param without description
Change-Id: Ic73e5c55c4efbbde19f71db9a067a97834d2b0c8 Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de>
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java
index 22ac80f23e..5af94583ba 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java
@@ -2332,7 +2332,7 @@ public static final long SendMessage (long hWnd, int Msg, long wParam, TCHAR lPa
* have this concept.
* </p>
*
- * @param isDarkTheme
+ * @param isDarkTheme <code>true</code> for dark theme
*/
public static final void setTheme(boolean isDarkTheme) {
System.setProperty("org.eclipse.swt.internal.win32.enableDarkScrollbars", Boolean.toString(isDarkTheme));

Back to the top