Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod2013-03-21 20:52:30 +0000
committerSilenio Quarti2013-03-22 21:03:56 +0000
commite6e94b82a117d95b90236c7ed5020ad3a3273eae (patch)
tree800c161df4f4f6fa4953c3c81629e655844bd49d
parent55d5d306b797562168d170020df67157cb631400 (diff)
downloadeclipse.platform.swt-e6e94b82a117d95b90236c7ed5020ad3a3273eae.tar.gz
eclipse.platform.swt-e6e94b82a117d95b90236c7ed5020ad3a3273eae.tar.xz
eclipse.platform.swt-e6e94b82a117d95b90236c7ed5020ad3a3273eae.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.java4
1 files changed, 2 insertions, 2 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 371d2c16ab..81e527ae1b 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
@@ -4103,7 +4103,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.
@@ -4113,7 +4113,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