|
From: Karsten W. <kar...@us...> - 2006-02-02 19:01:54
|
Update of /cvsroot/frontierkernel/Frontier/Common/IOAToolkit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18510/d Modified Files: Tag: pre_int64_branch ioaradio.c ioarect.c ioascrollbar.c Log Message: second round (minor) changes for i64 Index: ioaradio.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/IOAToolkit/ioaradio.c,v retrieving revision 1.4 retrieving revision 1.4.6.1 diff -C2 -d -r1.4 -r1.4.6.1 *** ioaradio.c 11 Jan 2005 22:47:38 -0000 1.4 --- ioaradio.c 2 Feb 2006 19:01:41 -0000 1.4.6.1 *************** *** 81,85 **** static boolean canreplicateradio (hdlobject h) { ! return (true); /*it can be replicated*/ } /*canreplicateradio*/ --- 81,85 ---- static boolean canreplicateradio (hdlobject h) { ! #pragma unused (h) return (true); /*it can be replicated*/ } /*canreplicateradio*/ *************** *** 109,113 **** static boolean debugradio (hdlobject h, bigstring errorstring) { ! setstringlength (errorstring, 0); --- 109,113 ---- static boolean debugradio (hdlobject h, bigstring errorstring) { ! #pragma unused (h) setstringlength (errorstring, 0); Index: ioascrollbar.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/IOAToolkit/ioascrollbar.c,v retrieving revision 1.4 retrieving revision 1.4.6.1 diff -C2 -d -r1.4 -r1.4.6.1 *** ioascrollbar.c 11 Jan 2005 22:47:38 -0000 1.4 --- ioascrollbar.c 2 Feb 2006 19:01:41 -0000 1.4.6.1 *************** *** 82,86 **** static boolean cleanscrollbar (hdlobject h, short textheight, short textwidth, Rect *r) { ! short height, width; --- 82,86 ---- static boolean cleanscrollbar (hdlobject h, short textheight, short textwidth, Rect *r) { ! #pragma unused (textheight, textwidth) short height, width; *************** *** 176,180 **** static boolean clickscrollbar (hdlobject listhead, hdlobject h, Point pt, boolean flshiftkey, boolean fl2click) { ! hdlscrollbardata hdata = (hdlscrollbardata) (**h).objectdata; hdlcard hc = (**h).owningcard; --- 176,180 ---- static boolean clickscrollbar (hdlobject listhead, hdlobject h, Point pt, boolean flshiftkey, boolean fl2click) { ! #pragma unused (listhead, flshiftkey, fl2click) hdlscrollbardata hdata = (hdlscrollbardata) (**h).objectdata; hdlcard hc = (**h).owningcard; *************** *** 299,303 **** static boolean recalcscrollbar (hdlobject h, boolean flmajorrecalc) { ! return (IOArecalcobjectvalue (h)); } /*recalcscrollbar*/ --- 299,303 ---- static boolean recalcscrollbar (hdlobject h, boolean flmajorrecalc) { ! #pragma unused (flmajorrecalc) return (IOArecalcobjectvalue (h)); } /*recalcscrollbar*/ *************** *** 313,317 **** static boolean canreplicatescrollbar (hdlobject h) { ! return (true); } /*canreplicatescrollbar*/ --- 313,317 ---- static boolean canreplicatescrollbar (hdlobject h) { ! #pragma unused (h) return (true); } /*canreplicatescrollbar*/ *************** *** 319,323 **** static boolean getscrollbareditrect (hdlobject h, Rect *r) { ! return (false); /*can't be edited*/ } /*getscrollbareditrect*/ --- 319,323 ---- static boolean getscrollbareditrect (hdlobject h, Rect *r) { ! #pragma unused (h, r) return (false); /*can't be edited*/ } /*getscrollbareditrect*/ *************** *** 345,349 **** static boolean debugscrollbar (hdlobject h, bigstring errorstring) { ! setstringlength (errorstring, 0); --- 345,349 ---- static boolean debugscrollbar (hdlobject h, bigstring errorstring) { ! #pragma unused (h) setstringlength (errorstring, 0); Index: ioarect.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/IOAToolkit/ioarect.c,v retrieving revision 1.3 retrieving revision 1.3.6.1 diff -C2 -d -r1.3 -r1.3.6.1 *** ioarect.c 11 Jan 2005 22:47:38 -0000 1.3 --- ioarect.c 2 Feb 2006 19:01:41 -0000 1.3.6.1 *************** *** 83,87 **** static boolean canreplicaterect (hdlobject h) { ! return (false); /*it can't be replicated*/ } /*canreplicaterect*/ --- 83,87 ---- static boolean canreplicaterect (hdlobject h) { ! #pragma unused (h) return (false); /*it can't be replicated*/ } /*canreplicaterect*/ *************** *** 89,93 **** static boolean getrecteditrect (hdlobject h, Rect *r) { ! return (false); /*can't be edited*/ } /*getrecteditrect*/ --- 89,93 ---- static boolean getrecteditrect (hdlobject h, Rect *r) { ! #pragma unused (h, r) return (false); /*can't be edited*/ } /*getrecteditrect*/ *************** *** 101,105 **** static boolean debugrectobject (hdlobject h, bigstring errorstring) { ! setstringlength (errorstring, 0); --- 101,105 ---- static boolean debugrectobject (hdlobject h, bigstring errorstring) { ! #pragma unused (h) setstringlength (errorstring, 0); *************** *** 182,186 **** static boolean clickrect (hdlobject listhead, hdlobject h, Point pt, boolean flshiftkey, boolean fl2click) { ! IOArunbuttonscript (h); --- 182,186 ---- static boolean clickrect (hdlobject listhead, hdlobject h, Point pt, boolean flshiftkey, boolean fl2click) { ! #pragma unused (listhead, pt, flshiftkey, fl2click) IOArunbuttonscript (h); |