1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 341170 - Fix for platform bug 291323 changed API behavior, regressing behavior in CDT

This commit is contained in:
John Cortell 2011-03-31 15:40:28 +00:00
parent 49b5fc416b
commit 64dfda5331

View file

@ -362,7 +362,7 @@ public class Binary extends Openable implements IBinary {
tu = new ExternalTranslationUnit(this, Path.fromOSString(filename), id); tu = new ExternalTranslationUnit(this, Path.fromOSString(filename), id);
} }
else { else {
tu = new ExternalTranslationUnit(this, URIUtil.toURI(filename), id); tu = new ExternalTranslationUnit(this, URIUtil.toURI(filename, true), id);
} }
} }