mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Fixed TrackMouseRegion() argument: ioWasInRgn is an in/out parameter.
This commit is contained in:
parent
3e3eacb5fc
commit
4b367359b5
2 changed files with 8 additions and 5 deletions
|
@ -109,8 +109,10 @@ class CarbonEvents_Scanner(Scanner_OSX):
|
|||
def makerepairinstructions(self):
|
||||
return [
|
||||
([("UInt32", 'inSize', "InMode"), ("void_ptr", 'inDataPtr', "InMode")],
|
||||
[("MyInBuffer", 'inDataPtr', "InMode")])
|
||||
[("MyInBuffer", 'inDataPtr', "InMode")]),
|
||||
([("Boolean", 'ioWasInRgn', "OutMode")],
|
||||
[("Boolean", 'ioWasInRgn', "InOutMode")]),
|
||||
]
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue