Patch from Michael Lowe (part of #5473) replace true by PR_TRUE

This commit is contained in:
mcmullen%netscape.com 1999-04-26 19:34:39 +00:00
Родитель 64f5c7dbe1
Коммит 6145ac6cde
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -316,7 +316,7 @@ nsresult nsFileSpec::Copy(const nsFileSpec& inParentDirectory) const
nsCRT::free(leafname);
// CopyFile returns non-zero if succeeds
int copyOK = CopyFile(GetCString(), destPath, true);
int copyOK = CopyFile(GetCString(), destPath, PR_TRUE);
if (copyOK)
return NS_OK;
}

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

@ -316,7 +316,7 @@ nsresult nsFileSpec::Copy(const nsFileSpec& inParentDirectory) const
nsCRT::free(leafname);
// CopyFile returns non-zero if succeeds
int copyOK = CopyFile(GetCString(), destPath, true);
int copyOK = CopyFile(GetCString(), destPath, PR_TRUE);
if (copyOK)
return NS_OK;
}