diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-08-25 22:04:24 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-08-25 22:04:24 (GMT) |
commit | d8b382dc470d0ac46c97b067a89b068a91337a59 (patch) | |
tree | 3a43128256b178498ed277cd3d927e4d577fffd7 /Mac/Modules/help/Helpmodule.c | |
parent | cdb34837442a8bd8133d1db57e88e0df3d2545d0 (diff) | |
download | cpython-d8b382dc470d0ac46c97b067a89b068a91337a59.zip cpython-d8b382dc470d0ac46c97b067a89b068a91337a59.tar.gz cpython-d8b382dc470d0ac46c97b067a89b068a91337a59.tar.bz2 |
HMGetBalloonWindow should try to return an existing window.
Diffstat (limited to 'Mac/Modules/help/Helpmodule.c')
-rw-r--r-- | Mac/Modules/help/Helpmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/help/Helpmodule.c b/Mac/Modules/help/Helpmodule.c index fac21b6..ffd2090 100644 --- a/Mac/Modules/help/Helpmodule.c +++ b/Mac/Modules/help/Helpmodule.c @@ -261,7 +261,7 @@ static PyObject *Help_HMGetBalloonWindow(_self, _args) _err = HMGetBalloonWindow(&window); if (_err != noErr) return PyMac_Error(_err); _res = Py_BuildValue("O&", - WinObj_New, window); + WinObj_WhichWindow, window); return _res; } |