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
26 lines
753 B
Plaintext
26 lines
753 B
Plaintext
--- atom.c.orig Thu Jan 13 22:36:02 1994
|
|
+++ ./atom.c Sat Jul 17 10:04:13 1999
|
|
@@ -73,11 +73,11 @@
|
|
Atom AtomDecorIconName;
|
|
Atom AtomSunReReadMenuFile;
|
|
#ifdef OW_I18N_L4
|
|
-Atom AtomCompoundText;
|
|
Atom AtomDecorIMStatus;
|
|
Atom AtomLeftIMStatus;
|
|
Atom AtomRightIMStatus;
|
|
#endif
|
|
+Atom AtomCompoundText;
|
|
|
|
/***************************************************************************
|
|
* Global functions
|
|
@@ -153,9 +153,7 @@
|
|
AtomTargets = XInternAtom(dpy,"TARGETS",False);
|
|
AtomTimestamp = XInternAtom(dpy,"TIMESTAMP",False);
|
|
AtomUser = XInternAtom(dpy,"USER",False);
|
|
-#ifdef OW_I18N_L4
|
|
AtomCompoundText = XInternAtom(dpy, "COMPOUND_TEXT" , False);
|
|
-#endif
|
|
|
|
/* SunView environment */
|
|
AtomSunViewEnv = XInternAtom(dpy,"_SUN_SUNVIEW_ENV",False);
|