Rest of tree-wide cleanup for bug 100212 - switch last consumers of nsIFile.URL r=dougt, sr=darin

This commit is contained in:
alecf%netscape.com 2007-05-05 04:35:24 +00:00
Родитель 19a9684aad
Коммит 10766e727e
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -225,8 +225,11 @@ function onOK()
const kLFIID = Components.interfaces.nsILocalFile;
const kLF = Components.classes[kLFContractID].createInstance(kLFIID);
kLF.initWithUnicodePath(url);
if (kLF.exists())
url = kLF.URL;
if (kLF.exists()) {
var ioService = Components.classes["@mozilla.org/network/io-service;1"].getService(Components.classes.nsIIOService);
url = ioService.getURLSpecFromFile(kLF);
}
}
catch (e) {
}