resort to the lowest common denomenator - don't make special cases for mac

This commit is contained in:
alecf%netscape.com 1999-04-10 20:39:59 +00:00
Родитель f7f65e36cc
Коммит f9fe45bb3e
1 изменённых файлов: 1 добавлений и 6 удалений

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

@ -250,12 +250,7 @@ nsMsgLocalMailFolder::AddDirectorySeparator(nsFileSpec &path)
// unfortunately we can't just say:
// path += sep;
// here because of the way nsFileSpec concatenates
#if defined(XP_MAC)
nsAutoString str((nsFilePath)path); //ducarroz: please don't cast a nsFilePath to char* on Mac
#else
const char *chpath = path;
nsAutoString str(chpath);
#endif
nsAutoString str((nsFilePath)path);
str += sep;
path = str;
}