diff options
author | welch <welch> | 1998-07-06 22:59:42 (GMT) |
---|---|---|
committer | welch <welch> | 1998-07-06 22:59:42 (GMT) |
commit | b4296ca11c7d47f45dd0f31d0092bb5fef77e34e (patch) | |
tree | a46fab6a4367b8c3cb936973bb23689b55dc2597 /mac/tkMacSubwindows.c | |
parent | 953b18d6d812dde54410640a66952a10df1e6ef9 (diff) | |
download | tk-b4296ca11c7d47f45dd0f31d0092bb5fef77e34e.zip tk-b4296ca11c7d47f45dd0f31d0092bb5fef77e34e.tar.gz tk-b4296ca11c7d47f45dd0f31d0092bb5fef77e34e.tar.bz2 |
Mac updates for 8.0.3-2
Diffstat (limited to 'mac/tkMacSubwindows.c')
-rw-r--r-- | mac/tkMacSubwindows.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mac/tkMacSubwindows.c b/mac/tkMacSubwindows.c index 63c5e09..b9dbaac 100644 --- a/mac/tkMacSubwindows.c +++ b/mac/tkMacSubwindows.c @@ -27,7 +27,7 @@ static RgnHandle tmpRgn = NULL; static void UpdateOffsets _ANSI_ARGS_((TkWindow *winPtr, int deltaX, int deltaY)); -void MacMoveWindow _ANSI_ARGS_((WindowRef window, int x, int y)); +void tkMacMoveWindow _ANSI_ARGS_((WindowRef window, int x, int y)); /* *---------------------------------------------------------------------- @@ -405,7 +405,7 @@ XMoveResizeWindow( SizeWindow((WindowRef) destPort, (short) width, (short) height, false); - MacMoveWindow((WindowRef) destPort, x, y); + tkMacMoveWindow((WindowRef) destPort, x, y); /* TODO: is the following right? */ TkMacInvalidateWindow(macWin, TK_WINDOW_ONLY); @@ -507,7 +507,7 @@ XMoveWindow( * region. It is currently assumed that Tk will need * to completely redraw anway. */ - MacMoveWindow((WindowRef) destPort, x, y); + tkMacMoveWindow((WindowRef) destPort, x, y); /* TODO: is the following right? */ TkMacInvalidateWindow(macWin, TK_WINDOW_ONLY); @@ -1050,7 +1050,7 @@ TkMacWinBounds( /* *---------------------------------------------------------------------- * - * MacMoveWindow -- + * tkMacMoveWindow -- * * A replacement for the Macintosh MoveWindow function. This * function adjusts the inputs to MoveWindow to offset the root of @@ -1067,7 +1067,7 @@ TkMacWinBounds( */ void -MacMoveWindow( +tkMacMoveWindow( WindowRef window, int x, int y) |