diff options
author | das <das> | 2006-04-22 04:12:02 (GMT) |
---|---|---|
committer | das <das> | 2006-04-22 04:12:02 (GMT) |
commit | 5329eba53d54ca7a91405a2dd68d4cadc7c2c0dc (patch) | |
tree | b746fc940e53e39db90a39b05efc227b66f96b8a /macosx | |
parent | 916cdd9441d3e7d714a15a68d1fa435976e38bfa (diff) | |
download | tk-5329eba53d54ca7a91405a2dd68d4cadc7c2c0dc.zip tk-5329eba53d54ca7a91405a2dd68d4cadc7c2c0dc.tar.gz tk-5329eba53d54ca7a91405a2dd68d4cadc7c2c0dc.tar.bz2 |
fix warnings
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXEmbed.c | 12 | ||||
-rw-r--r-- | macosx/tkMacOSXWm.c | 4 |
2 files changed, 7 insertions, 9 deletions
diff --git a/macosx/tkMacOSXEmbed.c b/macosx/tkMacOSXEmbed.c index 42d2c07..be37408 100644 --- a/macosx/tkMacOSXEmbed.c +++ b/macosx/tkMacOSXEmbed.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXEmbed.c,v 1.6 2006/04/18 22:16:02 vincentdarley Exp $ + * RCS: @(#) $Id: tkMacOSXEmbed.c,v 1.7 2006/04/22 04:12:02 das Exp $ */ #include "tkMacOSXInt.h" @@ -233,7 +233,6 @@ TkpUseWindow( MacDrawable *parent, *macWin; Container *containerPtr; XEvent event; - int result; if (winPtr->window != None) { Tcl_AppendResult(interp, "can't modify container after widget is created", (char *) NULL); @@ -250,13 +249,11 @@ TkpUseWindow( * */ - if (Tcl_GetInt(interp, string, &result) != TCL_OK) { + if (Tcl_GetInt(interp, string, (int*) &parent) != TCL_OK) { return TCL_ERROR; } - parent = (MacDrawable *) result; - - usePtr = (TkWindow *) Tk_IdToWindow(winPtr->display, parent); + usePtr = (TkWindow *) Tk_IdToWindow(winPtr->display, (Window) parent); if (usePtr != NULL) { if (!(usePtr->flags & TK_CONTAINER)) { Tcl_AppendResult(interp, "window \"", usePtr->pathName, @@ -340,7 +337,8 @@ TkpUseWindow( */ if (gMacEmbedHandler == NULL || - gMacEmbedHandler->registerWinProc(result, (Tk_Window) winPtr) != TCL_OK) { + gMacEmbedHandler->registerWinProc((int) parent, + (Tk_Window) winPtr) != TCL_OK) { Tcl_AppendResult(interp, "The window ID ", string, " does not correspond to a valid Tk Window.", (char *) NULL); diff --git a/macosx/tkMacOSXWm.c b/macosx/tkMacOSXWm.c index af16910..17d408c 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.31 2006/04/18 23:15:11 vincentdarley Exp $ + * RCS: @(#) $Id: tkMacOSXWm.c,v 1.32 2006/04/22 04:12:02 das Exp $ */ #include "tkMacOSXInt.h" @@ -2933,7 +2933,7 @@ WmTransientCmd(tkwin, winPtr, interp, objc, objv) return TCL_ERROR; } - if (master == winPtr) { + if ((TkWindow *) master == winPtr) { Tcl_AppendResult(interp, "can't make \"", Tk_PathName(winPtr), "\" its own master", NULL); return TCL_ERROR; |