2abc28d1f2
Version 4.2 fixes: 1) Fixed problems with windows that have a compound text title 2) Fixed problems with the cursor font name 3) error.c will now compile under Solaris 2.6 4) Fixed misc. compilation warnings. Some survive in error.c and states.c 5) Fixed warp function when two screens have the same program: warp will now look first on the screen containing the mouse pointer 6) Fixed hot key functions when num lock/shift lock might be pressed 7) Fixed problem with AutoRootMenu startup 8) Fixed problem with VirtualIconic resource
24 lines
581 B
Plaintext
24 lines
581 B
Plaintext
--- menu.c.orig Thu Jan 13 22:36:09 1994
|
|
+++ ./menu.c Sat Jul 17 10:04:15 1999
|
|
@@ -5,7 +5,7 @@
|
|
*/
|
|
|
|
#ifdef IDENT
|
|
-#ident "@(#)menu.c 1.6 olvwm version 07 Jan 1994"
|
|
+#ident "@(#)menu.c 1.7 olvwm version 01/13/98"
|
|
#endif
|
|
|
|
/*
|
|
@@ -3154,7 +3154,11 @@
|
|
else if (pb->label[pb->which].kind == ComboLabel) {
|
|
label = &combLabel;
|
|
combLabel.pixlabel = *(pb->label[pb->which].pixlabel);
|
|
+#ifdef OW_I18N_L4
|
|
+ combLabel.strlabel = GetText(pb->label[pb->which].string);
|
|
+#else
|
|
combLabel.strlabel = pb->label[pb->which].string;
|
|
+#endif
|
|
state |= OLGX_LABEL_IS_COMB;
|
|
}
|
|
#endif
|