Enforce interCaps Mozilla XPIDL style (r=shaver).

git-svn-id: svn://10.0.0.236/trunk@69760 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
brendan%mozilla.org
2000-05-15 07:03:46 +00:00
parent 4c0be90e26
commit f4d76ea285
21 changed files with 60 additions and 60 deletions

View File

@@ -57,8 +57,8 @@ function ls_dir(file, recur)
function foreach_iter(iter, fun)
{
while (iter.HasMoreElements()) {
var item = iter.GetNext().QueryInterface(nsILocalFile);
while (iter.hasMoreElements()) {
var item = iter.getNext().QueryInterface(nsILocalFile);
fun(item);
}
}