- Timestamp:
- 02/11/08 02:43:46 (17 years ago)
- Location:
- trunk/ICeCoffEE/ICeCoffEE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ICeCoffEE/ICeCoffEE/ICeCoffEE.m
r375 r381 65 65 // RFC-ordained max URL length, just to avoid passing IC/LS multi-megabyte documents 66 66 #if ICCF_DEBUG 67 static const long ICCF_MAX_URL_LEN = 120; // XXX change later67 const long ICCF_MAX_URL_LEN = 1024; // XXX change later 68 68 #else 69 staticconst long ICCF_MAX_URL_LEN = 1024;69 const long ICCF_MAX_URL_LEN = 1024; 70 70 #endif 71 71 … … 389 389 390 390 391 @interface NSTextView (IC_NSSharing)392 // only in Mac OS X 10.4 and later393 - (NSArray *)selectedRanges;394 @end395 396 391 @implementation ICeCoffEE 397 392 … … 413 408 [servicesItem release]; 414 409 servicesItem = nil; 415 }416 if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_3) {417 [[NSApp servicesMenu] update]; // enable keyboard equivalents in Mac OS X 10.3418 410 } 419 411 } -
trunk/ICeCoffEE/ICeCoffEE/ICeCoffEEShared.h
r319 r381 22 22 #define ICapeprintf(args...) ; 23 23 #endif 24 25 // we compile against the 10.3.9 SDK, so this isn't defined yet26 #define NSAppKitVersionNumber10_3 74327 24 28 25 extern const OSType kICCFCreator;
Note:
See TracChangeset
for help on using the changeset viewer.