From 752697385e80b54b2f18216e1c6a584203f8df82 Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Thu, 3 Mar 2016 10:40:17 +0100 Subject: [PATCH] Fix another Xaw compile error This is what you get when changing code without testing if it at least compiles... --- xaw/xoptions.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/xaw/xoptions.c b/xaw/xoptions.c index 38f0c85..dbe92c8 100644 --- a/xaw/xoptions.c +++ b/xaw/xoptions.c @@ -191,7 +191,7 @@ SetWidgetLabel (Option *opt, char *buf) void SetComboChoice (Option *opt, int n) { - SetWidgetText(opt, opt->choice[n]); + SetWidgetText(opt, opt->choice[n], MasterDlg); } void -- 1.7.0.4