From 23bdc8a0e8b3ad414e02095443db0bf800a416a7 Mon Sep 17 00:00:00 2001 From: lecoanet Date: Tue, 22 Mar 2005 15:30:02 +0000 Subject: Suppressed __unused attribute, this will be dealed with by the gcc directive -Wno-unused-parameter and VC++ does not care about these anyway. --- generic/Reticle.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'generic/Reticle.c') diff --git a/generic/Reticle.c b/generic/Reticle.c index 6bfa235..3011f5d 100644 --- a/generic/Reticle.c +++ b/generic/Reticle.c @@ -137,8 +137,8 @@ static ZnAttrConfig reticle_attrs[] = { */ static int Init(ZnItem item, - int *argc __znunused, - Tcl_Obj *CONST *args[] __znunused) + int *argc, + Tcl_Obj *CONST *args[]) { ReticleItem reticle = (ReticleItem) item; ZnWInfo *wi = item->wi; @@ -234,7 +234,7 @@ Configure(ZnItem item, */ static int Query(ZnItem item, - int argc __znunused, + int argc, Tcl_Obj *CONST argv[]) { if (ZnQueryAttribute(item->wi->interp, item, reticle_attrs, argv[0]) == TCL_ERROR) { @@ -254,7 +254,7 @@ Query(ZnItem item, */ static void ComputeCoordinates(ZnItem item, - ZnBool force __znunused) + ZnBool force) { ZnWInfo *wi = item->wi; ReticleItem reticle = (ReticleItem) item; @@ -305,8 +305,8 @@ ComputeCoordinates(ZnItem item, ********************************************************************************** */ static int -ToArea(ZnItem item __znunused, - ZnToArea ta __znunused) +ToArea(ZnItem item, + ZnToArea ta) { return -1; } @@ -493,7 +493,7 @@ Render(ZnItem item) } #else static void -Render(ZnItem item __znunused) +Render(ZnItem item) { } #endif @@ -508,7 +508,7 @@ Render(ZnItem item __znunused) */ static ZnBool IsSensitive(ZnItem item, - int item_part __znunused) + int item_part) { return (ISSET(item->flags, ZN_SENSITIVE_BIT) && item->parent->class->IsSensitive(item->parent, ZN_NO_PART)); @@ -524,8 +524,8 @@ IsSensitive(ZnItem item, ********************************************************************************** */ static double -Pick(ZnItem item __znunused, - ZnPick ps __znunused) +Pick(ZnItem item, + ZnPick ps) { return 1e40; } @@ -541,11 +541,11 @@ Pick(ZnItem item __znunused, */ static int Coords(ZnItem item, - int contour __znunused, - int index __znunused, + int contour, + int index, int cmd, ZnPoint **pts, - char **controls __znunused, + char **controls, unsigned int *num_pts) { ReticleItem reticle = (ReticleItem) item; @@ -580,8 +580,8 @@ Coords(ZnItem item, ********************************************************************************** */ static void -PostScript(ZnItem item __znunused, - ZnBool prepass __znunused) +PostScript(ZnItem item, + ZnBool prepass) { } -- cgit v1.1