diff options
author | root <root> | 2012-07-23 22:53:30 (GMT) |
---|---|---|
committer | root <root> | 2012-07-23 22:53:30 (GMT) |
commit | c315d3e456e6fe5c0abc226702265e84c68dac35 (patch) | |
tree | 16da99640cc5e50fca19e6bd42e61c929a083ccb /unix | |
parent | ed71824f826f7e40c9d3478e1b81d49955232692 (diff) | |
download | tk-c315d3e456e6fe5c0abc226702265e84c68dac35.zip tk-c315d3e456e6fe5c0abc226702265e84c68dac35.tar.gz tk-c315d3e456e6fe5c0abc226702265e84c68dac35.tar.bz2 |
Fix for [Bug 3546073]:
Replace Tk_CreateWindow(... DisplayString(dispPtr->display)) with
direct call to TkAllocWindow().
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tkUnixSend.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/unix/tkUnixSend.c b/unix/tkUnixSend.c index c073309..493100e 100644 --- a/unix/tkUnixSend.c +++ b/unix/tkUnixSend.c @@ -1350,11 +1350,8 @@ SendInit( * for it. */ - dispPtr->commTkwin = Tk_CreateWindow(interp, (Tk_Window) NULL, - "_comm", DisplayString(dispPtr->display)); - if (dispPtr->commTkwin == NULL) { - Tcl_Panic("Tk_CreateWindow failed in SendInit!"); - } + dispPtr->commTkwin = TkAllocWindow(dispPtr, + DefaultScreen(dispPtr->display), NULL); Tcl_Preserve((ClientData) dispPtr->commTkwin); atts.override_redirect = True; Tk_ChangeWindowAttributes(dispPtr->commTkwin, |