|
From: Martin R. <ru...@us...> - 2004-08-10 02:29:01
|
Update of /cvsroot/foo/fooelk/lib/xwidgets/motif In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11256/lib/xwidgets/motif Modified Files: support.d Log Message: integrated recent changes in elk's svn repository. throws lots of warnings while compiling due to new warning flags enabled in configure.ac. don't mind Index: support.d =================================================================== RCS file: /cvsroot/foo/fooelk/lib/xwidgets/motif/support.d,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** support.d 6 Aug 2004 20:56:43 -0000 1.1.1.1 --- support.d 10 Aug 2004 02:28:52 -0000 1.2 *************** *** 77,81 **** (prolog ! "Object Get_Any_CB (XmAnyCallbackStruct *p) { Object args, ret; GC_Node2; --- 77,82 ---- (prolog ! "Object Get_Any_CB (void *_p) { ! XmAnyCallbackStruct *p = _p; Object args, ret; GC_Node2; *************** *** 96,100 **** (prolog ! "Object Get_Selection_CB (XmSelectionBoxCallbackStruct *p) { Object ret, s; char *text; --- 97,102 ---- (prolog ! "Object Get_Selection_CB (void *_p) { ! XmSelectionBoxCallbackStruct *p = _p; Object ret, s; char *text; |