From 89c6ae1124d9eddb9fca185734ad3b6f8cf4ff54 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Mon, 12 Dec 2011 18:45:05 -0800 Subject: [PATCH] also don't translate selection in ComboSelect; fixes #34991 --- xoptions.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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); -- 1.7.0.4