From 0b384915b71907d4f3816d98a0df4feea2af36c7 Mon Sep 17 00:00:00 2001 From: erg Date: Thu, 7 Dec 2006 22:49:35 +0000 Subject: [PATCH] Re-do some .h files to limit exposure of internal values, .h files, and dependencies on config.h; return to a simple, concrete boolean type --- tclpkg/tcldot/tkgen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tclpkg/tcldot/tkgen.c b/tclpkg/tcldot/tkgen.c index 2588e3f62..3c23c4b82 100644 --- a/tclpkg/tcldot/tkgen.c +++ b/tclpkg/tcldot/tkgen.c @@ -521,10 +521,10 @@ static void tk_polyline(point * A, int n) } } -static void tk_usershape(usershape_t *us, boxf b, point *A, int n, bool filled) +static void tk_usershape(usershape_t *us, boxf b, point *A, int n, boolean filled) { /* FIXME */ - static bool onetime = TRUE; + static boolean onetime = TRUE; if (onetime) { fprintf(stderr, "custom shapes not available with this driver\n"); onetime = FALSE; -- 2.40.0