projects
/
xboard.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
6a97469
)
also don't translate selection in ComboSelect; fixes #34991
author
Arun Persaud
<arun@nubati.net>
Tue, 13 Dec 2011 02:45:05 +0000 (18:45 -0800)
committer
Arun Persaud
<arun@nubati.net>
Tue, 13 Dec 2011 02:45:05 +0000 (18:45 -0800)
xoptions.c
patch
|
blob
|
history
diff --git
a/xoptions.c
b/xoptions.c
index
abe86dd
..
d684add
100644
(file)
--- 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);