Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2013-02-13 13:05:45 +0000
committerMarkus Keller2013-02-13 13:05:45 +0000
commit114654733d23d3bfdbf0907418ef59037365ff3d (patch)
treec270f05b7c777dcb2a6fdd1ed2d87f102f81ea2a
parent343f779786dccf93f19a54ab36ff42d836e0a1b7 (diff)
downloadeclipse.platform.swt-114654733d23d3bfdbf0907418ef59037365ff3d.tar.gz
eclipse.platform.swt-114654733d23d3bfdbf0907418ef59037365ff3d.tar.xz
eclipse.platform.swt-114654733d23d3bfdbf0907418ef59037365ff3d.zip
Bug 181592: [Widgets] Need a color constant for active and inactive hyperlink colors
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java8
1 files changed, 4 insertions, 4 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 3171f40964..73ce77174b 100644
--- 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
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2012 IBM Corporation and others.
+ * Copyright (c) 2000, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -3172,7 +3172,7 @@ public class SWT {
/**
* System color used to paint link text (value is 36).
*
- * @since 4.3
+ * @since 3.101
*/
public static final int COLOR_LINK_FOREGROUND = 36;
@@ -4115,7 +4115,7 @@ public class SWT {
*
* @since 3.6
*/
- public static final String SKIN_CLASS = "org.eclipse.swt.skin.class";
+ public static final String SKIN_CLASS = "org.eclipse.swt.skin.class"; //$NON-NLS-1$
/**
* Key value for setting and getting the skin id of a widget.
@@ -4125,7 +4125,7 @@ public class SWT {
*
* @since 3.6
*/
- public static final String SKIN_ID = "org.eclipse.swt.skin.id";
+ public static final String SKIN_ID = "org.eclipse.swt.skin.id"; //$NON-NLS-1$
/**
* The <code>Scrollable</code> constant to indicate that

Back to the top