Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod2013-03-21 20:52:30 +0000
committerCarolyn MacLeod2013-03-21 20:52:30 +0000
commit1017c18b2cb3397c28180d4d41c73c359b35a043 (patch)
tree8837d08f7eaab313532e6f355d5a55035bc267b3
parenteccb7e5f60fc58262d44b4aa3c5e8db2db1b2d08 (diff)
downloadeclipse.platform.swt-1017c18b2cb3397c28180d4d41c73c359b35a043.tar.gz
eclipse.platform.swt-1017c18b2cb3397c28180d4d41c73c359b35a043.tar.xz
eclipse.platform.swt-1017c18b2cb3397c28180d4d41c73c359b35a043.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 43ee9aa14f..c05b72c243 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