|
From: Karsten W. <kar...@us...> - 2005-12-20 22:12:17
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16301 Modified Files: appletglue.c Log Message: compiler warning rename Index: appletglue.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/appletglue.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** appletglue.c 11 Jan 2005 22:48:04 -0000 1.3 --- appletglue.c 20 Dec 2005 22:12:08 -0000 1.4 *************** *** 41,45 **** boolean rectlessthan (Rect r1, Rect r2); boolean unicaseequalstrings (void *pvoid1, void *pvoid2); ! boolean oldclutconverter (short index, RGBColor *rgb); boolean emptyrect (Rect r); boolean pushhandleonhandle (Handle hsource, Handle hdest); --- 41,47 ---- boolean rectlessthan (Rect r1, Rect r2); boolean unicaseequalstrings (void *pvoid1, void *pvoid2); ! ! // kw - 2005-12-15 - compiler warning rename ! boolean oldclutconverter (short idx, RGBColor *rgb); boolean emptyrect (Rect r); boolean pushhandleonhandle (Handle hsource, Handle hdest); *************** *** 163,167 **** } /*getclut*/ ! boolean oldclutconverter (short index, RGBColor *rgb) { CTabHandle hdlctab; --- 165,169 ---- } /*getclut*/ ! boolean oldclutconverter (short idx, RGBColor *rgb) { CTabHandle hdlctab; *************** *** 169,173 **** getclut (128, &hdlctab); ! *rgb = (**hdlctab).ctTable [index].rgb; return (true); --- 171,175 ---- getclut (128, &hdlctab); ! *rgb = (**hdlctab).ctTable [idx].rgb; return (true); *************** *** 230,234 **** boolean findrunningapp (OSType id, void *info) { ! return (findrunningapplication (&id, nil, nil)); } /*findrunningapp*/ --- 232,236 ---- boolean findrunningapp (OSType id, void *info) { ! #pragma unused(info) return (findrunningapplication (&id, nil, nil)); } /*findrunningapp*/ |