Index: FSNBrowserCell.m =================================================================== --- FSNBrowserCell.m (revision 37408) +++ FSNBrowserCell.m (working copy) @@ -39,7 +39,7 @@ static NSDictionary *fontAttr = nil; static SEL cutTitleSel = NULL; -static cutIMP cutTitle = NULL; +static IMP cutTitleImp = NULL; @implementation FSNBrowserCell @@ -63,7 +63,7 @@ if (initialized == NO) { cutTitleSel = @selector(cutTitle:toFitWidth:); - cutTitle = (cutIMP)[self instanceMethodForSelector: cutTitleSel]; + cutTitleImp = [self instanceMethodForSelector: cutTitleSel]; if (desktopApp == nil) { NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; @@ -229,7 +229,7 @@ textlenght -= MARGIN; ASSIGN (uncuttedTitle, [self stringValue]); - cuttitle = (*cutTitle)(self, cutTitleSel, uncuttedTitle, textlenght); + cuttitle = (*cutTitleImp)(self, cutTitleSel, uncuttedTitle, textlenght); [self setStringValue: cuttitle]; [self setShowsFirstResponder: NO];