mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 15:45:25 +02:00
nls extern strings
This commit is contained in:
parent
d2bbf9cad1
commit
7090a75b05
2 changed files with 3 additions and 3 deletions
|
@ -1491,7 +1491,7 @@ public class SystemEditableRemoteFile implements ISystemEditableRemoteObject, IP
|
|||
}
|
||||
else {
|
||||
// using text mode so the char set needs to be local
|
||||
String localEncoding = System.getProperty("file.encoding");
|
||||
String localEncoding = System.getProperty("file.encoding"); //$NON-NLS-1$
|
||||
file.setCharset(localEncoding, null);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -118,7 +118,7 @@ public class UniversalPreferencePage
|
|||
protected Image fileImage;
|
||||
protected Image binaryFileImage;
|
||||
|
||||
protected String[] columnProperties = { "P_ICON", "P_TYPE", "P_CONTENT" };
|
||||
protected String[] columnProperties = { "P_ICON", "P_TYPE", "P_CONTENT" }; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
|
@ -558,7 +558,7 @@ public class UniversalPreferencePage
|
|||
|
||||
|
||||
private Image applyBinaryDecoration(Image source) {
|
||||
ImageDescriptor binaryOverlay = Activator.getImageDescriptor("/icons/full/ovr16/binary_ovr.gif");
|
||||
ImageDescriptor binaryOverlay = Activator.getImageDescriptor("/icons/full/ovr16/binary_ovr.gif"); //$NON-NLS-1$
|
||||
DecorationOverlayIcon icon = new DecorationOverlayIcon(source, binaryOverlay, 3);
|
||||
return icon.createImage();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue