|
From: Karsten W. <kar...@us...> - 2006-02-14 11:57:55
|
Update of /cvsroot/frontierkernel/Frontier/Common/IOAToolkit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28542 Modified Files: Tag: pre_int64_branch ioapicture.c Log Message: compiler warning fixes Index: ioapicture.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/IOAToolkit/ioapicture.c,v retrieving revision 1.3 retrieving revision 1.3.6.1 diff -C2 -d -r1.3 -r1.3.6.1 *** ioapicture.c 11 Jan 2005 22:47:38 -0000 1.3 --- ioapicture.c 14 Feb 2006 11:57:43 -0000 1.3.6.1 *************** *** 66,70 **** static boolean canreplicatepicture (hdlobject h) { ! return (true); /*it can be replicated*/ } /*canreplicatepicture*/ --- 66,71 ---- static boolean canreplicatepicture (hdlobject h) { ! #pragma unused(h) ! return (true); /*it can be replicated*/ } /*canreplicatepicture*/ *************** *** 72,75 **** --- 73,77 ---- static boolean getpictureeditrect (hdlobject h, Rect *r) { + #pragma unused(h, r) return (false); /*text of object can't be edited*/ *************** *** 78,82 **** static boolean getpicturevalue (hdlobject h, Handle *hvalue) { ! return (false); /*picture doesn't have a value for a script*/ } /*getpicturevalue*/ --- 80,85 ---- static boolean getpicturevalue (hdlobject h, Handle *hvalue) { ! #pragma unused(h, hvalue) ! return (false); /*picture doesn't have a value for a script*/ } /*getpicturevalue*/ *************** *** 84,87 **** --- 87,91 ---- static boolean debugpicture (hdlobject h, bigstring errorstring) { + #pragma unused(h) setstringlength (errorstring, 0); |