Ignore:
Timestamp:
02/11/08 02:43:46 (16 years ago)
Author:
Nicholas Riley
Message:

ICeCoffEEShared.h: Remove 10.3 compatibility.

ICeCoffEE.m: Set ICCF_MAX_URL_LEN to 1024 for 1.5dX releases; remove
static which caused compilation failure (can be removed after Terminal
parsing code is better integrated?); remove 10.3 compatibility.

Location:
trunk/ICeCoffEE/ICeCoffEE
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ICeCoffEE/ICeCoffEE/ICeCoffEE.m

    r375 r381  
    6565// RFC-ordained max URL length, just to avoid passing IC/LS multi-megabyte documents
    6666#if ICCF_DEBUG
    67 static const long ICCF_MAX_URL_LEN = 120; // XXX change later
     67const long ICCF_MAX_URL_LEN = 1024; // XXX change later
    6868#else
    69 static const long ICCF_MAX_URL_LEN = 1024;
     69const long ICCF_MAX_URL_LEN = 1024;
    7070#endif
    7171
     
    389389
    390390
    391 @interface NSTextView (IC_NSSharing)
    392 // only in Mac OS X 10.4 and later
    393 - (NSArray *)selectedRanges;
    394 @end
    395 
    396391@implementation ICeCoffEE
    397392
     
    413408        [servicesItem release];
    414409        servicesItem = nil;
    415     }
    416     if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_3) {
    417         [[NSApp servicesMenu] update]; // enable keyboard equivalents in Mac OS X 10.3
    418410    }
    419411}
  • trunk/ICeCoffEE/ICeCoffEE/ICeCoffEEShared.h

    r319 r381  
    2222#define ICapeprintf(args...) ;
    2323#endif
    24 
    25 // we compile against the 10.3.9 SDK, so this isn't defined yet
    26 #define NSAppKitVersionNumber10_3 743
    2724
    2825extern const OSType kICCFCreator;
Note: See TracChangeset for help on using the changeset viewer.