diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2012-09-13 20:49:44 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2012-09-13 20:49:44 (GMT) |
commit | 94b7088d04f985e6b094ab9a9092f42b266e1943 (patch) | |
tree | 04a7b96bfe837ae870d19ef78eec77aed860b817 /xlib | |
parent | d09f38ea376a2f01c80a61bc00c5c0833cee9928 (diff) | |
parent | 3b56d8436bd7fd053bc567b8d8bbc573306c5dfe (diff) | |
download | tk-94b7088d04f985e6b094ab9a9092f42b266e1943.zip tk-94b7088d04f985e6b094ab9a9092f42b266e1943.tar.gz tk-94b7088d04f985e6b094ab9a9092f42b266e1943.tar.bz2 |
[Bug 3567453]: Clip regions must be cleared with XSetClipMask and not
TkSetRegion on X11.
Diffstat (limited to 'xlib')
-rw-r--r-- | xlib/xgc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -465,7 +465,7 @@ TkSetRegion( TkRegion r) { if (r == None) { - FreeClipMask(gc); + Tcl_Panic("must not pass None to TkSetRegion for compatibility with X11; use XSetClipMask instead"); } else { TkpClipMask *clip_mask = AllocClipMask(gc); |