Ignore:
Timestamp:
04/18/05 05:30:49 (19 years ago)
Author:
Nicholas Riley
Message:

ICeCoffEE 1.4 and preliminary 1.4.1 changes. Sorry, I forgot to
commit version 1.4 when it was released, so the precise source for
that release has been lost.

See the release notes for details of what changed in these versions.
1.4 was a significant feature release; 1.4.1 is a bug fix for 10.3.9,
incorporating up-to-date Unsanity Installer and APE.

package-ICeCoffEE.sh: use xcodebuild instead of pbxbuild.

File:
1 edited

Legend:

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

    r142 r167  
    219219
    220220        urlData = (char *)malloc( (range->length + 1) * sizeof(char));
    221         NSCAssert(urlData != NULL, @"Internal error: canÕt allocate memory for URL string");
     221        NSCAssert(urlData != NULL, @"Internal error: can't allocate memory for URL string");
    222222
    223223        selStart = 0; selEnd = range->length;
     
    226226
    227227        h = NewHandle(0);
    228         NSCAssert(h != NULL, @"Internal error: canÕt allocate URL handle");
     228        NSCAssert(h != NULL, @"Internal error: can't allocate URL handle");
    229229
    230230        err = ICParseURL(ICCF_GetInst(), "\pmailto", urlData, range->length, &selStart, &selEnd, h);
     
    262262        Boolean needsSlashes;
    263263        ConstStringPtr hint = ICCF_GetHint(ICCF_GetInst(), *h, len, &selStart, &selEnd, &needsSlashes);
    264         NSCAssert(hint != NULL, @"Internal error: canÕt get protocol hint for URL");
     264        NSCAssert(hint != NULL, @"Internal error: can't get protocol hint for URL");
    265265
    266266        if (needsSlashes) {
     
    406406    NSString *servicesTitle = [[NSBundle bundleWithIdentifier: @"com.apple.AppKit"] localizedStringForKey: @"Services" value: nil table: @"ServicesMenu"];
    407407    if (servicesTitle == nil) {
    408         ICLog(@"CanÕt get localized text for 'Services' in AppKit.framework");
     408        ICLog(@"Can't get localized text for 'Services' in AppKit.framework");
    409409        servicesTitle = @"Services";
    410410    }
     
    475475}
    476476
    477 NSMenu *ICCF_MenuForEvent(NSTextView *self, NSMenu *contextMenu, NSEvent *e) {
     477NSMenu *ICCF_MenuForEvent(NSView *self, NSMenu *contextMenu, NSEvent *e) {
    478478    if (contextMenu != nil && [e type] == NSRightMouseDown || ([e type] == NSLeftMouseDown && [e modifierFlags] & NSControlKeyMask)) {
    479479        int servicesItemIndex = [contextMenu indexOfItemWithRepresentedObject: ICCF_SERVICES_ITEM];
Note: See TracChangeset for help on using the changeset viewer.