From: Fred Pierresteguy Date: Mon, 14 Mar 1994 17:50:20 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-19.34~9517 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=05041ba0f89f952debdd3c3f09b842401f917b7d;p=emacs.git *** empty log message *** --- diff --git a/lwlib/lwlib-Xaw.c b/lwlib/lwlib-Xaw.c index efc287e062a..90aa782be81 100644 --- a/lwlib/lwlib-Xaw.c +++ b/lwlib/lwlib-Xaw.c @@ -124,7 +124,10 @@ xaw_update_one_widget (instance, widget, val, deep_p) } else if (XtIsSubclass (widget, dialogWidgetClass)) { - XtVaSetValues (widget, XtNlabel, val->contents->value, 0); + Arg al[1]; + int ac = 0; + XtSetArg (al[ac], XtNlabel, val->contents->value); ac++; + XtSetValues (widget, al, ac); } else if (XtIsSubclass (widget, commandWidgetClass)) {