r=mscott, a=brendan
OS/2 bringup - VisualAge treats this like a cast - according to nsFileSpec.h, our way is correct
This commit is contained in:
mkaply%us.ibm.com 2000-07-05 13:44:44 +00:00
Родитель ea7236e0cf
Коммит 83b8bd6fea
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -281,7 +281,7 @@ nsresult nsImapMailFolder::CreateSubFolders(nsFileSpec &path)
char *folderName;
for (nsDirectoryIterator dir(path, PR_FALSE); dir.Exists(); dir++)
{
nsFileSpec currentFolderPath = (nsFileSpec&)dir;
nsFileSpec currentFolderPath = dir.Spec();
folderName = currentFolderPath.GetLeafName();
currentFolderNameStr.AssignWithConversion(folderName);
if (nsShouldIgnoreFile(currentFolderNameStr))

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

@ -470,7 +470,7 @@ nsMsgLocalMailFolder::CreateSubFolders(nsFileSpec &path)
nsCOMPtr<nsIMsgFolder> child;
for (nsDirectoryIterator dir(path, PR_FALSE); dir.Exists(); dir++) {
nsFileSpec currentFolderPath = (nsFileSpec&)dir;
nsFileSpec currentFolderPath = dir.Spec();
currentFolderPath.GetLeafName(currentFolderNameStr);
if (nsShouldIgnoreFile(currentFolderNameStr))