Mon Feb 28 19:50:20 GMT 2000

(gilbertt)

64-bit fixes from Bob Arendt <rdarendt@cwcom.net>


SVN revision: 2150
This commit is contained in:
Tom Gilbert 2000-02-28 19:52:11 +00:00
parent e1c288e567
commit 4c314c6975
2 changed files with 10 additions and 3 deletions

View File

@ -1993,3 +1993,10 @@ Fixed Epplet_register_event_handler, prompted by email from Alexandre David
to change the line where the event handler is called. (His patch changed
only one definition of it, in the wrong place, and broke epplets ;)
-------------------------------------------------------------------------------
Mon Feb 28 19:50:20 GMT 2000
(gilbertt)
64-bit fixes from Bob Arendt <rdarendt@cwcom.net>

View File

@ -1026,7 +1026,7 @@ void
Epplet_imageclass_paste(char *iclass, char *state, Window ww, int x, int y,
int w, int h)
{
Pixmap p, m;
Pixmap p = 0, m = 0;
char s[1024], *msg;
GC gc = 0;
XGCValues gcv;
@ -1054,7 +1054,7 @@ void
Epplet_imageclass_get_pixmaps(char *iclass, char *state, Pixmap * p,
Pixmap * m, int w, int h)
{
Pixmap pp, mm;
Pixmap pp = 0, mm = 0;
char s[1024], *msg;
GC gc = 0, mgc = 0;
XGCValues gcv;
@ -1857,7 +1857,7 @@ ECommsGet(XEvent * ev)
{
char s[13], s2[9], *msg = NULL;
int i;
Window win;
Window win = 0;
static char *c_msg = NULL;
if (!ev)