diff options
author | jan.nijtmans <jan.nijtmans@noemail.net> | 2011-07-28 08:48:16 (GMT) |
---|---|---|
committer | jan.nijtmans <jan.nijtmans@noemail.net> | 2011-07-28 08:48:16 (GMT) |
commit | e806421d05d07f08a5095e062bae77b66dd45289 (patch) | |
tree | 67deefa8410603b3805babfe5340ca6c0814a81d | |
parent | 32177c98d592c2cee2afe7c7848bcff3fe602ecd (diff) | |
parent | af98350ddf0c4c39ffde6d4e9c91a7d905f29811 (diff) | |
download | tk-e806421d05d07f08a5095e062bae77b66dd45289.zip tk-e806421d05d07f08a5095e062bae77b66dd45289.tar.gz tk-e806421d05d07f08a5095e062bae77b66dd45289.tar.bz2 |
[Bug 3380684] XEmptyRegion prototype doesn't match usage
FossilOrigin-Name: 2b12f5dbb7af87d98d94bbbb43960355f72da1f4
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | xlib/X11/Xutil.h | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2011-07-28 Jan Nijtmans <nijtmans@users.sf.net> + + * xlib/X11/Xutil.h: [Bug 3380684] XEmptyRegion prototype doesn't + match usage + 2011-06-29 Don Porter <dgp@users.sourceforge.net> * generic/ttk/ttkTrace.c: [Bug 3341056] Correct segfault due to flaw diff --git a/xlib/X11/Xutil.h b/xlib/X11/Xutil.h index e42ed5d..7348e90 100644 --- a/xlib/X11/Xutil.h +++ b/xlib/X11/Xutil.h @@ -364,13 +364,13 @@ extern void XDestroyRegion( #endif ); -extern void XEmptyRegion( +extern Bool XEmptyRegion( #if NeedFunctionPrototypes Region /* r */ #endif ); -extern void XEqualRegion( +extern Bool XEqualRegion( #if NeedFunctionPrototypes Region /* r1 */, Region /* r2 */ |