diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2012-09-13 20:47:03 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2012-09-13 20:47:03 (GMT) |
commit | 3b56d8436bd7fd053bc567b8d8bbc573306c5dfe (patch) | |
tree | 8e87eab00435411297e7e09440a4fe70b575b40a /xlib | |
parent | bc916480b8159c7013c4a8c43a2cd8f79d0cf9f4 (diff) | |
download | tk-3b56d8436bd7fd053bc567b8d8bbc573306c5dfe.zip tk-3b56d8436bd7fd053bc567b8d8bbc573306c5dfe.tar.gz tk-3b56d8436bd7fd053bc567b8d8bbc573306c5dfe.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
@@ -436,7 +436,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); |