|
From: <psn...@us...> - 2003-10-29 01:10:15
|
Update of /cvsroot/whisper2/Whisper/Source/BackEnd/Files/Source/Files/Mac In directory sc8-pr-cvs1:/tmp/cvs-serv23184 Modified Files: MFileSystem.cpp Log Message: Fixed obnoxious bug in ChangeCreatorType. Index: MFileSystem.cpp =================================================================== RCS file: /cvsroot/whisper2/Whisper/Source/BackEnd/Files/Source/Files/Mac/MFileSystem.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** MFileSystem.cpp 15 Aug 2003 09:42:04 -0000 1.12 --- MFileSystem.cpp 29 Oct 2003 01:06:14 -0000 1.13 *************** *** 10,13 **** --- 10,16 ---- * * $Log$ + * Revision 1.13 2003/10/29 01:06:14 psnively + * Fixed obnoxious bug in ChangeCreatorType. + * * Revision 1.12 2003/08/15 09:42:04 meeroh * FSCopyObject now returns OSStatus *************** *** 282,286 **** FSCatalogInfo catInfo; FileInfo* fileInfo = reinterpret_cast <FileInfo*> (&catInfo.finderInfo); ! file.GetCatalogInfo (kFSCatInfoDataSizes, &catInfo, nil, nil, nil); fileInfo->fileCreator = creator; --- 285,289 ---- FSCatalogInfo catInfo; FileInfo* fileInfo = reinterpret_cast <FileInfo*> (&catInfo.finderInfo); ! file.GetCatalogInfo (kFSCatInfoFinderInfo, &catInfo, nil, nil, nil); fileInfo->fileCreator = creator; |