diff options
author | dgp <dgp@users.sourceforge.net> | 2012-07-24 13:13:46 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2012-07-24 13:13:46 (GMT) |
commit | cd666e485e5d8ce484dc40d6d0ab87fd5694a1bc (patch) | |
tree | 1db8f6d76050669da5b5dfad9fb9537ebf5c65ab | |
parent | 12b2afd60078f02d9df7713baa51481b8faa07a8 (diff) | |
parent | 5622724370381defbc456e36d2d5e6234cb964e8 (diff) | |
download | tk-cd666e485e5d8ce484dc40d6d0ab87fd5694a1bc.zip tk-cd666e485e5d8ce484dc40d6d0ab87fd5694a1bc.tar.gz tk-cd666e485e5d8ce484dc40d6d0ab87fd5694a1bc.tar.bz2 |
silence compiler warnings
-rw-r--r-- | generic/tkClipboard.c | 2 | ||||
-rw-r--r-- | unix/tkUnixSend.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkClipboard.c b/generic/tkClipboard.c index 3687033..043c167 100644 --- a/generic/tkClipboard.c +++ b/generic/tkClipboard.c @@ -645,7 +645,7 @@ TkClipInit( * and set up an event handler for it. */ - dispPtr->clipWindow = TkAllocWindow(dispPtr, + dispPtr->clipWindow = (Tk_Window) TkAllocWindow(dispPtr, DefaultScreen(dispPtr->display), NULL); Tcl_Preserve(dispPtr->clipWindow); atts.override_redirect = True; diff --git a/unix/tkUnixSend.c b/unix/tkUnixSend.c index 37b1737..13f2f04 100644 --- a/unix/tkUnixSend.c +++ b/unix/tkUnixSend.c @@ -1349,7 +1349,7 @@ SendInit( * for it. */ - dispPtr->commTkwin = TkAllocWindow(dispPtr, + dispPtr->commTkwin = (Tk_Window) TkAllocWindow(dispPtr, DefaultScreen(dispPtr->display), NULL); Tcl_Preserve(dispPtr->commTkwin); atts.override_redirect = True; |