StandardGetFile without args now shows all files (in stead of none)

This commit is contained in:
Jack Jansen 1995-06-03 21:15:50 +00:00
parent 7be34a8bb3
commit c263286bc6

View file

@ -480,6 +480,8 @@ mfs_StandardGetFile(self, args)
while ( numtypes < 4 && list[numtypes] ) {
numtypes++;
}
if ( numtypes == 0 )
numtypes = -1;
StandardGetFile((FileFilterUPP)0, numtypes, list, &reply);
return mkvalue("(Oi)", newmfssobject(&reply.sfFile), reply.sfGood);
}