From: Arun Persaud Date: Tue, 13 Dec 2011 02:45:05 +0000 (-0800) Subject: also don't translate selection in ComboSelect; fixes #34991 X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=89c6ae1124d9eddb9fca185734ad3b6f8cf4ff54;p=xboard.git also don't translate selection in ComboSelect; fixes #34991 --- diff --git a/xoptions.c b/xoptions.c index abe86dd..d684add 100644 --- a/xoptions.c +++ b/xoptions.c @@ -200,7 +200,7 @@ void ComboSelect(w, addr, index) // callback for all combo items int j = 255 & (intptr_t) addr; values[i] = j; // store in temporary, for transfer at OK - XtSetArg(args[0], XtNlabel, _(((char**)currentOption[i].textValue)[j])); + XtSetArg(args[0], XtNlabel, ((char**)currentOption[i].textValue)[j]); XtSetValues(currentOption[i].handle, args, 1); if(currentOption[i].min & 1 && !currentCps && comboCallback) (comboCallback)(i);