Changeset 1301 for trunk/BaseTenAssistant/Sources/MKCPolishedHeaderView.m
- Timestamp:
- 06/03/09 19:42:54 (14 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/BaseTenAssistant/Sources/MKCPolishedHeaderView.m
r1006 r1301 31 31 #import "MKCPolishedHeaderCell.h" 32 32 #import <BaseTen/BXEnumerate.h> 33 #import <BaseTen/BXLogger.h> 33 34 34 35 NSString* kMKCEnabledColoursKey = @"kMKCEnabledColoursKey"; … … 282 283 { 283 284 NSRect rect = [super headerRectOfColumn: columnIndex]; 284 NSAssert(rect.size.height == [self frame].size.height, @"Expected heights to match.");285 BXAssertLog (rect.size.height == [self frame].size.height, @"Expected heights to match."); 285 286 return rect; 286 287 } … … 297 298 298 299 float height = [self bounds].size.height; 299 NSAssert(height >= 3.0, @"This view may not be shorter than 3.0 units.");300 BXAssertVoidReturn (height >= 3.0, @"This view may not be shorter than 3.0 units."); 300 301 301 302 NSDictionary* enabledColours = nil;
