Return a handle in stead of a resource.

This commit is contained in:
Jack Jansen 2000-04-07 09:08:37 +00:00
parent a396a883af
commit e31d3d66aa
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ def _mktypelist(typelist):
data = 'Pyth' + struct.pack("hh", 0, len(typelist))
for type in typelist:
data = data+type
return Res.Resource(data)
return Res.Handle(data)
def _StandardGetFile(*typelist):
return apply(_PromptGetFile, (None,)+typelist)