|
From: <has...@us...> - 2006-04-04 08:01:42
|
Revision: 1187 Author: hasseily Date: 2006-04-04 01:01:12 -0700 (Tue, 04 Apr 2006) ViewCVS: http://svn.sourceforge.net/frontierkernel/?rev=1187&view=rev Log Message: ----------- Fixes some warnings. Removed a couple of calls to nonexistent functions and put in a couple of casts. Modified Paths: -------------- Frontier/trunk/Common/headers/process.h Frontier/trunk/Common/source/OpenTransportNetEvents.c Frontier/trunk/Common/source/icon.c Frontier/trunk/Common/source/shellwindow.c Frontier/trunk/Common/source/smallicon.c Modified: Frontier/trunk/Common/headers/process.h =================================================================== --- Frontier/trunk/Common/headers/process.h 2006-04-03 13:06:44 UTC (rev 1186) +++ Frontier/trunk/Common/headers/process.h 2006-04-04 08:01:12 UTC (rev 1187) @@ -193,8 +193,6 @@ extern void processinvalidglobals (WindowPtr); -extern void processinvalidoutline (struct tyoutlinerecord **); - extern boolean abort1shotprocess (void); extern void killdependentprocesses (long); Modified: Frontier/trunk/Common/source/OpenTransportNetEvents.c =================================================================== --- Frontier/trunk/Common/source/OpenTransportNetEvents.c 2006-04-03 13:06:44 UTC (rev 1186) +++ Frontier/trunk/Common/source/OpenTransportNetEvents.c 2006-04-04 08:01:12 UTC (rev 1187) @@ -2458,16 +2458,12 @@ return (fl); }/*fwsbackgroundtask*/ +static boolean fwsNetEventLaunch (int * dummy) { -static boolean fwsNetEventLaunch (struct hostData *data) { - /* - Initialize the NetEvents system - - 5.0.2b5 dmb: added hostData parameter and GUSI support to handle threading + Initialize the NetEvents system */ - #pragma unused (data) if (!frontierWinSockLoaded) { Modified: Frontier/trunk/Common/source/icon.c =================================================================== --- Frontier/trunk/Common/source/icon.c 2006-04-03 13:06:44 UTC (rev 1186) +++ Frontier/trunk/Common/source/icon.c 2006-04-04 08:01:12 UTC (rev 1187) @@ -684,7 +684,7 @@ rarrow.left++; /*it appears to need it*/ - DrawThemePopupArrow (&rarrow, kThemeArrowRight, kThemeArrow9pt, kThemeStateActive, NULL, NULL); + DrawThemePopupArrow (&rarrow, kThemeArrowRight, kThemeArrow9pt, kThemeStateActive, NULL, (UInt32) NULL); } /*MyThemeButtonDrawCallback*/ #endif Modified: Frontier/trunk/Common/source/shellwindow.c =================================================================== --- Frontier/trunk/Common/source/shellwindow.c 2006-04-03 13:06:44 UTC (rev 1186) +++ Frontier/trunk/Common/source/shellwindow.c 2006-04-04 08:01:12 UTC (rev 1187) @@ -2988,7 +2988,7 @@ if ((**h).flneversaved) deletefile (&fspec); - flushvolumechanges (&fspec, NULL); + flushvolumechanges (&fspec, (short) NULL); } (**h).fnum = 0; /*indicate no file open*/ Modified: Frontier/trunk/Common/source/smallicon.c =================================================================== --- Frontier/trunk/Common/source/smallicon.c 2006-04-03 13:06:44 UTC (rev 1186) +++ Frontier/trunk/Common/source/smallicon.c 2006-04-04 08:01:12 UTC (rev 1187) @@ -171,7 +171,7 @@ r.bottom = r.bottom + 4; - DrawThemePopupArrow (&r, kThemeArrowDown, kThemeArrow9pt, themestate, NULL, NULL); + DrawThemePopupArrow (&r, kThemeArrowDown, kThemeArrow9pt, themestate, NULL, (UInt32) NULL); return (true); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |