diff options
author | Carolyn MacLeod <carolyn> | 2011-03-04 18:22:09 +0000 |
---|---|---|
committer | Carolyn MacLeod <carolyn> | 2011-03-04 18:22:09 +0000 |
commit | 4386c9c02d6b1814bbe975a148b2cae593f3838f (patch) | |
tree | 80bce58d484b94276ad331eb710c10a26a4b6e7b | |
parent | 6f8133324bc7c335216c2daba949908ab696c1b2 (diff) | |
download | eclipse.platform.swt-4386c9c02d6b1814bbe975a148b2cae593f3838f.tar.gz eclipse.platform.swt-4386c9c02d6b1814bbe975a148b2cae593f3838f.tar.xz eclipse.platform.swt-4386c9c02d6b1814bbe975a148b2cae593f3838f.zip |
flag non-nls strings
-rw-r--r-- | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java index f16e8ad2d1..8f075b5ac7 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java @@ -3663,11 +3663,11 @@ void setBackgroundColor (int /*long*/ handle, GdkColor color) { int flags = OS.gtk_rc_style_get_color_flags (style, index); if (color != null) { flags |= OS.GTK_RC_BG; - pixmapName = "<none>"; + pixmapName = "<none>"; //$NON-NLS-1$ } else { flags &= ~OS.GTK_RC_BG; if (backgroundImage == null && (state & PARENT_BACKGROUND) != 0) { - pixmapName = "<parent>"; + pixmapName = "<parent>"; //$NON-NLS-1$ } } if (pixmapName != null) { |