1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

Patch from James to externalize strings.

This commit is contained in:
Alain Magloire 2004-03-01 20:09:23 +00:00
parent 8adf0dd949
commit 499f1cf3e0
2 changed files with 7 additions and 1 deletions
core/org.eclipse.cdt.core.win32
ChangeLog
src/org/eclipse/cdt/internal/core/win32

View file

@ -1,3 +1,9 @@
2004-03-01 James Ciesielski
Marked string as non-externalized
* src/org/eclipse/cdt/internal/core/win32/ProcessList.java
2004-02-17 Alain Magloire 2004-02-17 Alain Magloire
Remove old Eclipse2.0 interface and Remove old Eclipse2.0 interface and

View file

@ -33,7 +33,7 @@ public class ProcessList implements IProcessList {
InputStream in = null; InputStream in = null;
IPluginDescriptor desc = CCorePlugin.getDefault().getDescriptor(); IPluginDescriptor desc = CCorePlugin.getDefault().getDescriptor();
try { try {
URL url = desc.find(new Path("$os$/listtasks.exe")); URL url = desc.find(new Path("$os$/listtasks.exe")); //$NON-NLS-1$
url = Platform.resolve(url); url = Platform.resolve(url);
String path = url.getFile(); String path = url.getFile();
File file = new File(path); File file = new File(path);