summaryrefslogtreecommitdiff
path: root/lwlib
diff options
context:
space:
mode:
authorFred Pierresteguy <F.Pierresteguy@frcl.bull.fr>1994-03-14 17:50:20 +0000
committerFred Pierresteguy <F.Pierresteguy@frcl.bull.fr>1994-03-14 17:50:20 +0000
commit4f5894f199134f99d46d449c2c18058e1c255796 (patch)
tree7c4f7560ca787b2335ff1c35fd6f98cf507be999 /lwlib
parent7e1075709aa6278f84bd6395cad025f490fa7206 (diff)
downloademacs-4f5894f199134f99d46d449c2c18058e1c255796.tar.gz
*** empty log message ***
Diffstat (limited to 'lwlib')
-rw-r--r--lwlib/lwlib-Xaw.c5
1 files changed, 4 insertions, 1 deletions
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))
{