mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Switch to sets module instead of using builtin set type to support Python 2.3 on mobile. Bustage fix.
This commit is contained in:
parent
bb59f8fa78
commit
0eeeec31c5
@ -1005,7 +1005,7 @@ def writeStubFile(filename, headerFilename, conf, interfaces):
|
||||
for iface in interfaces:
|
||||
resulttypes.extend(writeIncludesForInterface(iface))
|
||||
f.write("\n\n")
|
||||
writeResultXPCInterfacesArray(f, conf, frozenset(resulttypes))
|
||||
writeResultXPCInterfacesArray(f, conf, sets.ImmutableSet(resulttypes))
|
||||
for iface in interfaces:
|
||||
writeStubsForInterface(f, iface)
|
||||
writeDefiner(f, conf, interfaces)
|
||||
|
Loading…
Reference in New Issue
Block a user