summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXWm.c
diff options
context:
space:
mode:
authordas <das>2006-02-09 19:09:43 (GMT)
committerdas <das>2006-02-09 19:09:43 (GMT)
commitc8ad1ae45d1ba823877b6a2b63f2ae6504954548 (patch)
tree3aa7b0f5431615f40e0dcabaf762aa4c63d2de66 /macosx/tkMacOSXWm.c
parentee09dd0c7cfc65378fac95dd53067bcd72b390e9 (diff)
downloadtk-c8ad1ae45d1ba823877b6a2b63f2ae6504954548.zip
tk-c8ad1ae45d1ba823877b6a2b63f2ae6504954548.tar.gz
tk-c8ad1ae45d1ba823877b6a2b63f2ae6504954548.tar.bz2
* generic/tk.decls: fix signature of TkMacOSXInvalClipRgns
* generic/tkPlatDecls.h: to use Tk_Window instead of internal * macosx/tkMacOSXSubwindows.c: type TkWindow (which led to any include * macosx/tkMacOSXWindowEvent.c: of public header tkMacOSX.h requiring * macosx/tkMacOSXWm.c: prior include of tkInt.h). * generic/tk.h: move TkAqua specific REDO_KEYSYM_LOOKUP define * macosx/tkMacOSXPort.h: out of tk.h into platform header.
Diffstat (limited to 'macosx/tkMacOSXWm.c')
-rw-r--r--macosx/tkMacOSXWm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/tkMacOSXWm.c b/macosx/tkMacOSXWm.c
index 73a9839..977a0e5 100644
--- a/macosx/tkMacOSXWm.c
+++ b/macosx/tkMacOSXWm.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkMacOSXWm.c,v 1.7.2.15 2005/12/01 18:31:43 dgp Exp $
+ * RCS: @(#) $Id: tkMacOSXWm.c,v 1.7.2.16 2006/02/09 19:09:43 das Exp $
*/
#include <Carbon/Carbon.h>
@@ -4406,7 +4406,7 @@ TkMacOSXGrowToplevel(
LoWord(growResult), HiWord(growResult), true);
SetPort( GetWindowPort(whichWindow));
InvalWindowRect(whichWindow,&portRect); /* TODO: may not be needed */
- TkMacOSXInvalClipRgns(winPtr);
+ TkMacOSXInvalClipRgns((Tk_Window) winPtr);
TkGenWMConfigureEvent((Tk_Window) winPtr, -1, -1,
(int) LoWord(growResult), (int) HiWord(growResult),
TK_SIZE_CHANGED);
@@ -4595,7 +4595,7 @@ TkMacOSXZoomToplevel(
ZoomWindow(whichWindow, zoomPart, false);
InvalWindowRect(whichWindow,&portRect);
- TkMacOSXInvalClipRgns((TkWindow *) tkwin);
+ TkMacOSXInvalClipRgns(tkwin);
LocalToGlobal(&location);
TkMacOSXWindowOffset(whichWindow, &xOffset, &yOffset);