From 4d6276cd97ad5f73b2beba3a86e05b7eb5e3c19f Mon Sep 17 00:00:00 2001 From: "pinkerton%netscape.com" Date: Tue, 11 May 1999 21:31:32 +0000 Subject: [PATCH] some of the timer stuff in here (which we don't use) doesn't like the WWDC Carbon Headers. #ifdef'd out for TARGET_CARBON. git-svn-id: svn://10.0.0.236/trunk@31139 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/lib/mac/MoreFiles/MoreFilesSearch.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mozilla/lib/mac/MoreFiles/MoreFilesSearch.c b/mozilla/lib/mac/MoreFiles/MoreFilesSearch.c index 0d4f83af32c..8d0d3f24c50 100644 --- a/mozilla/lib/mac/MoreFiles/MoreFilesSearch.c +++ b/mozilla/lib/mac/MoreFiles/MoreFilesSearch.c @@ -707,7 +707,10 @@ static long GetDirModDate(short vRefNum, } /*****************************************************************************/ - +#if !TARGET_CARBON +/* NSCP - pinkerton + * some of the timer stuff is mismatched for carbon. We don't use it anyway. + */ pascal OSErr IndexedSearch(CSParamPtr pb, long dirID) { @@ -982,6 +985,7 @@ pascal OSErr IndexedSearch(CSParamPtr pb, return ( result ); } +#endif /*****************************************************************************/