diff options
author | wolfsuit <wolfsuit> | 2003-09-30 23:26:09 (GMT) |
---|---|---|
committer | wolfsuit <wolfsuit> | 2003-09-30 23:26:09 (GMT) |
commit | 009ece320d1dad3ff4557d55b5859b4512d1660e (patch) | |
tree | 2bf36229932f41809c5d2fa5e9d3ca06f4818d08 /macosx/tkMacOSXPort.h | |
parent | 89cb52358e92bd6496cf8068147b904a689dd870 (diff) | |
download | tk-009ece320d1dad3ff4557d55b5859b4512d1660e.zip tk-009ece320d1dad3ff4557d55b5859b4512d1660e.tar.gz tk-009ece320d1dad3ff4557d55b5859b4512d1660e.tar.bz2 |
Add an implementation of XSync that flushes the window buffers. This fixes 814810.
Also use tk text drawing for checkbutton & radiobutton labels.
Diffstat (limited to 'macosx/tkMacOSXPort.h')
-rw-r--r-- | macosx/tkMacOSXPort.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/tkMacOSXPort.h b/macosx/tkMacOSXPort.h index 8f9d2be..def575d 100644 --- a/macosx/tkMacOSXPort.h +++ b/macosx/tkMacOSXPort.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXPort.h,v 1.3 2002/09/26 17:07:33 das Exp $ + * RCS: @(#) $Id: tkMacOSXPort.h,v 1.4 2003/09/30 23:26:09 wolfsuit Exp $ */ #ifndef _TKMACPORT @@ -159,9 +159,10 @@ extern int strncasecmp _ANSI_ARGS_((CONST char *s1, #define XNoOp(display) {display->request++;} #define XUngrabServer(display) #define XSynchronize(display, bool) {display->request++;} -#define XSync(display, bool) {display->request++;} #define XVisualIDFromVisual(visual) (visual->visualid) +int XSync(Display *display, Bool discard); + /* * The following functions are not used on the Mac, so we stub them out. */ |