diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1998-02-20 16:03:15 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1998-02-20 16:03:15 (GMT) |
commit | efaada75e4197817ccc71f2942ab8ad07977aca9 (patch) | |
tree | af2c4743e14b022daa091a5a14782beef7c6d875 | |
parent | 21f96872f20080d5f07a72ea4141fac137ac9b15 (diff) | |
download | cpython-efaada75e4197817ccc71f2942ab8ad07977aca9.zip cpython-efaada75e4197817ccc71f2942ab8ad07977aca9.tar.gz cpython-efaada75e4197817ccc71f2942ab8ad07977aca9.tar.bz2 |
- Universal Headers 3 mods
- Started on menubar-restore code (but it still doesn't work 100%)
-rw-r--r-- | Mac/Python/macglue.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index 4d0fb1f..838e27e 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -183,6 +183,7 @@ PyMac_FixGUSIcd() ** provide a dummy here. */ void SpinCursor(short x) { /* Dummy */ } +void RotateCursor(short x) { /* Dummy */ } /* ** Replacement GUSI Spin function @@ -392,7 +393,7 @@ scan_event_queue(flush) { register EvQElPtr q; - q = (EvQElPtr) GetEventQueue()->qHead; + q = (EvQElPtr) LMGetEventQueue()->qHead; for (; q; q = (EvQElPtr)q->qLink) { if (q->evtQWhat == keyDown && @@ -651,7 +652,8 @@ PyMac_RestoreMenuBar() if ( sioux_mbar ) { SetMenuBar(sioux_mbar); DrawMenuBar(); - } + } else + PyMac_InitMenuBar(); } |