summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixSend.c
diff options
context:
space:
mode:
authorjenglish <jenglish@flightlab.com>2012-07-31 05:07:14 (GMT)
committerjenglish <jenglish@flightlab.com>2012-07-31 05:07:14 (GMT)
commit120c8a0602b5e973ce7b1ec47c786230ca18fdad (patch)
tree741ff99bcb5b70b799187e6c866e47a7b810773d /unix/tkUnixSend.c
parent249f6aaeda84147d59059b5d50bfced43415143e (diff)
downloadtk-120c8a0602b5e973ce7b1ec47c786230ca18fdad.zip
tk-120c8a0602b5e973ce7b1ec47c786230ca18fdad.tar.gz
tk-120c8a0602b5e973ce7b1ec47c786230ca18fdad.tar.bz2
Backport fix for [Bug 3546073]
Diffstat (limited to 'unix/tkUnixSend.c')
-rw-r--r--unix/tkUnixSend.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/unix/tkUnixSend.c b/unix/tkUnixSend.c
index 2b54506..f6ad7b5 100644
--- a/unix/tkUnixSend.c
+++ b/unix/tkUnixSend.c
@@ -1314,11 +1314,9 @@ SendInit(interp, dispPtr)
* event handler for it.
*/
- dispPtr->commTkwin = Tk_CreateWindow(interp, (Tk_Window) NULL,
- "_comm", DisplayString(dispPtr->display));
- if (dispPtr->commTkwin == NULL) {
- panic("Tk_CreateWindow failed in SendInit!");
- }
+ dispPtr->commTkwin = (Tk_Window) TkAllocWindow(dispPtr,
+ DefaultScreen(dispPtr->display), NULL);
+
Tcl_Preserve((ClientData) dispPtr->commTkwin);
atts.override_redirect = True;
Tk_ChangeWindowAttributes(dispPtr->commTkwin,