From a2fc7b287de1b1eeaa1a2fba141b7e348819b68d Mon Sep 17 00:00:00 2001 From: lecoanet Date: Wed, 8 Oct 2003 08:08:36 +0000 Subject: Fixed the return type of the ZnPointInRegion prototype to return a ZnBool --- win/WinPort.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'win') diff --git a/win/WinPort.c b/win/WinPort.c index 569b0ad..e530ad3 100644 --- a/win/WinPort.c +++ b/win/WinPort.c @@ -51,12 +51,12 @@ static const char compile_id[]="$Compile$"; * *---------------------------------------------------------------------- */ -int +ZnBool ZnPointInRegion(TkRegion reg, int x, int y) { - return PtInRegion((HRGN) reg, x, y); + return (ZnBool) PtInRegion((HRGN) reg, x, y); } /* -- cgit v1.1