diff options
Diffstat (limited to 'grid.c')
-rw-r--r-- | grid.c | 21 |
1 files changed, 12 insertions, 9 deletions
@@ -409,7 +409,8 @@ static XtConvertArgRec xftColorConvertArgs[] = { } while (0) static void -XmuFreeXftColor (XtAppContext app, XrmValuePtr toVal, XtPointer closure, +XmuFreeXftColor (XtAppContext app, XrmValuePtr toVal, + XtPointer closure _X_UNUSED, XrmValuePtr args, Cardinal *num_args) { Screen *screen; @@ -439,7 +440,7 @@ static Boolean XmuCvtStringToXftColor(Display *dpy, XrmValue *args, Cardinal *num_args, XrmValue *fromVal, XrmValue *toVal, - XtPointer *converter_data) + XtPointer *converter_data _X_UNUSED) { char *spec; XRenderColor renderColor; @@ -489,7 +490,7 @@ XmuCvtStringToXftColor(Display *dpy, } static void -XmuFreeXftFont (XtAppContext app, XrmValuePtr toVal, XtPointer closure, +XmuFreeXftFont (XtAppContext app, XrmValuePtr toVal, XtPointer closure _X_UNUSED, XrmValuePtr args, Cardinal *num_args) { Screen *screen; @@ -515,7 +516,7 @@ static Boolean XmuCvtStringToXftFont(Display *dpy, XrmValue *args, Cardinal *num_args, XrmValue *fromVal, XrmValue *toVal, - XtPointer *converter_data) + XtPointer *converter_data _X_UNUSED) { char *name; XftFont *font; @@ -571,7 +572,8 @@ ClassInitialize(void) static void -Initialize(Widget request, Widget new, ArgList args, Cardinal *num_args) +Initialize(Widget request, Widget new, + ArgList args _X_UNUSED, Cardinal *num_args _X_UNUSED) { FontGridWidget reqfg = (FontGridWidget) request; FontGridWidget newfg = (FontGridWidget) new; @@ -684,7 +686,7 @@ Resize(Widget gw) /* ARGSUSED */ static void -Redisplay(Widget gw, XEvent *event, Region region) +Redisplay(Widget gw, XEvent *event _X_UNUSED, Region region) { FontGridWidget fgw = (FontGridWidget) gw; XRectangle rect; /* bounding rect for region */ @@ -880,8 +882,8 @@ PageBlank (Widget w, long first, long last) /*ARGSUSED*/ static Boolean -SetValues(Widget current, Widget request, Widget new, - ArgList args, Cardinal *num_args) +SetValues(Widget current, Widget request _X_UNUSED, Widget new, + ArgList args _X_UNUSED, Cardinal *num_args _X_UNUSED) { FontGridWidget curfg = (FontGridWidget) current; FontGridWidget newfg = (FontGridWidget) new; @@ -943,7 +945,8 @@ SetValues(Widget current, Widget request, Widget new, /* ARGSUSED */ static void -Notify(Widget gw, XEvent *event, String *params, Cardinal *nparams) +Notify(Widget gw, XEvent *event, + String *params _X_UNUSED, Cardinal *nparams _X_UNUSED) { FontGridWidget fgw = (FontGridWidget) gw; int x, y; /* where the event happened */ |