From 05041ba0f89f952debdd3c3f09b842401f917b7d Mon Sep 17 00:00:00 2001 From: Fred Pierresteguy Date: Mon, 14 Mar 1994 17:50:20 +0000 Subject: [PATCH] *** empty log message *** --- lwlib/lwlib-Xaw.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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)) { -- 2.39.5