Bug 150158 clean up after nsIFile.delete was renamed to .remove p=stevechapel@earthlink.net r=shliang sr=brendan a=asa

This commit is contained in:
neil%parkwaycc.co.uk 2003-05-14 14:30:12 +00:00
Родитель 6acd0b59e3
Коммит 0783e3feac
3 изменённых файлов: 3 добавлений и 6 удалений

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

@ -109,8 +109,6 @@ const JSFILE_READ_MODE = "r";
const JSFILE_WRITE_MODE = "w";
const JSFILE_APPEND_MODE = "a";
const JSFILE_DELETE = "delete";
const JSFILE_FILETYPE = 0x00; // 0
const JSFILE_CHUNK = 1024; // buffer for readline => set to 1k
@ -181,7 +179,7 @@ var fileExists = this.exists();
{
try
{
this.fileInst[JSFILE_DELETE](false);
this.fileInst.remove(false);
fileExists=false;
}

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

@ -124,7 +124,7 @@
path = mod.getResultPropertyAt(idx, "path");
file = inSearchUtils.createLocalFile(path);
if (file) {
file["delete"](false);
file.remove(false);
}
}
]]></body>

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

@ -904,8 +904,7 @@ function sidebar_revert_to_default_panels() {
try {
var sidebar_file = sidebar_get_panels_file();
// Calling delete() with array notation (workaround for bug 37406).
sidebar_file["delete"](false);
sidebar_file.remove(false);
// Since we just removed the panels file,
// this should copy the defaults over.