diff options
author | Guido van Rossum <guido@python.org> | 1995-02-21 20:56:21 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-02-21 20:56:21 (GMT) |
commit | 0437e890414cd6b34e7ab74d03ba3eab90e29bcb (patch) | |
tree | c761cb2b9298e77071e27955bc27dd7f647e3eb1 /Mac/Modules/dlg/dlgsupport.py | |
parent | f74c36c9dc959f228656f36094b2bf3969f9b6c1 (diff) | |
download | cpython-0437e890414cd6b34e7ab74d03ba3eab90e29bcb.zip cpython-0437e890414cd6b34e7ab74d03ba3eab90e29bcb.tar.gz cpython-0437e890414cd6b34e7ab74d03ba3eab90e29bcb.tar.bz2 |
fix bug in filterproc interface
Diffstat (limited to 'Mac/Modules/dlg/dlgsupport.py')
-rw-r--r-- | Mac/Modules/dlg/dlgsupport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/dlg/dlgsupport.py b/Mac/Modules/dlg/dlgsupport.py index 1eb5576..d3491fe 100644 --- a/Mac/Modules/dlg/dlgsupport.py +++ b/Mac/Modules/dlg/dlgsupport.py @@ -40,7 +40,7 @@ static pascal Boolean Dlg_UnivFilterProc(DialogPtr dialog, if (callback == NULL) return 0; /* Default behavior */ Dlg_FilterProc_callback = NULL; /* We'll restore it when call successful */ - args = Py_BuildValue("O&s#", DlgObj_New, dialog, event, (int)sizeof(EventRecord)); + args = Py_BuildValue("O&O&", WinObj_WhichWindow, dialog, PyMac_BuildEventRecord, event); if (args == NULL) res = NULL; else { |