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/Tabular.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'generic/Tabular.c') diff --git a/generic/Tabular.c b/generic/Tabular.c index 03f9299..d6f1cd6 100644 --- a/generic/Tabular.c +++ b/generic/Tabular.c @@ -233,7 +233,7 @@ Configure(ZnItem item, */ static int Query(ZnItem item, - int argc __znunused, + int argc, Tcl_Obj *CONST argv[]) { if (ZnQueryAttribute(item->wi->interp, item, tabular_attrs, argv[0]) == TCL_ERROR) { @@ -253,7 +253,7 @@ Query(ZnItem item, */ static void ComputeCoordinates(ZnItem item, - ZnBool force __znunused) + ZnBool force) { TabularItem tab = (TabularItem) item; ZnWInfo *wi = item->wi; @@ -411,8 +411,8 @@ Pick(ZnItem item, ********************************************************************************** */ static void -PostScript(ZnItem item __znunused, - ZnBool prepass __znunused) +PostScript(ZnItem item, + ZnBool prepass) { } @@ -499,11 +499,11 @@ GetClipVertices(ZnItem item, */ 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) { TabularItem tabular = (TabularItem) item; -- cgit v1.1