source: trunk/ICeCoffEE/ICeCoffEE/ICeCoffEENonHighlightingTextFieldCell.m@ 378

Last change on this file since 378 was 321, checked in by Nicholas Riley, 17 years ago

VERSION.xcconfig: Using one of Dave Dribin's suggestions from
<http://www.dribin.org/dave/blog/archives/2006/08/02/versioning_os_x_apps/>.
Now down to changing the version number in two places,
VERSION.xcconfig and ui.plist. The second could be scripted but I
haven't bothered yet.

Info-APE Module.plist: Version number wasn't visible in the Finder any
more (oops). Move some stuff from InfoPlist.strings; get version
number from VERSION.xcconfig.

English.lproj/InfoPlist.strings: Move much stuff to Info.plist
instead.

ui.plist: Update version to 1.5d1.

Select Services.nib: Fix some resizing problems. Make the English
sheet as wide as the German one; it looks squashed otherwise. Make
the Key column wide enough to accommodate collision display in
English. Use alternating row coloring.

ICeCoffEENonHighlightingTextFieldCell.m,
ICeCoffEENonHighlightingButtonCell.m: Return nil instead of [NSColor
whiteColor] to work properly with alternating coloring.

Info-APEManagerPrefPane.plist: Get version number from VERSION.xcconfig.

ICeCoffEE.xcodeproj: Use VERSION.xcconfig. Include InfoPlist.strings
in APE build (oops!).

File size: 399 bytes
Line 
1//
2// ICeCoffEENonHighlightingTextFieldCell.m
3// ICeCoffEE APE
4//
5// Created by Nicholas Riley on Fri Jun 06 2003.
6// Copyright (c) 2003 Nicholas Riley. All rights reserved.
7//
8
9#import "ICeCoffEENonHighlightingTextFieldCell.h"
10
11
12@implementation ICeCoffEENonHighlightingTextFieldCell
13
14- (NSColor *)highlightColorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView
15{
16 return nil;
17}
18
19@end
Note: See TracBrowser for help on using the repository browser.