comparison src/macterm.c @ 72827:85a97b0bef15

* macterm.c (XTread_socket) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Undo 2006-09-08 change.
author YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
date Tue, 12 Sep 2006 09:48:18 +0000
parents f6b18b9949d1
children 45b141d01846 a1a25ac6c88a
comparison
equal deleted inserted replaced
72826:1dc889aea3bf 72827:85a97b0bef15
10536 } 10536 }
10537 if (part_code == inProxyIcon 10537 if (part_code == inProxyIcon
10538 && (TrackWindowProxyDrag (window_ptr, er.where) 10538 && (TrackWindowProxyDrag (window_ptr, er.where)
10539 != errUserWantsToDragWindow)) 10539 != errUserWantsToDragWindow))
10540 break; 10540 break;
10541 /* kWindowAsyncDragAttribute is specified on Mac OS X
10542 10.3 and later.*/
10543 #if MAC_OS_X_VERSION_MAX_ALLOWED < 1030
10544 DragWindow (window_ptr, er.where, NULL); 10541 DragWindow (window_ptr, er.where, NULL);
10545 #endif
10546 #else /* not TARGET_API_MAC_CARBON */ 10542 #else /* not TARGET_API_MAC_CARBON */
10547 DragWindow (window_ptr, er.where, &qd.screenBits.bounds); 10543 DragWindow (window_ptr, er.where, &qd.screenBits.bounds);
10548 #endif /* not TARGET_API_MAC_CARBON */ 10544 #endif /* not TARGET_API_MAC_CARBON */
10549 /* Update the frame parameters. */ 10545 /* Update the frame parameters. */
10550 #if !USE_CARBON_EVENTS 10546 #if !USE_CARBON_EVENTS