Skip to content

Commit 7c78b64

Browse files
committed
Merge remote-tracking branch 'github-alanquatermain/master'
2 parents b3270c6 + 48c9a64 commit 7c78b64

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Classes/AQGridViewUpdateItem.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ - (NSString *) description
8181
}
8282

8383
NSString * animationDesc = @"<Unknown>";
84-
switch ( _animation )
84+
switch ( (UITableViewRowAnimation)_animation )
8585
{
8686
case UITableViewRowAnimationFade:
8787
animationDesc = @"Fade";
@@ -108,7 +108,7 @@ - (NSString *) description
108108
break;
109109
}
110110

111-
return ( [NSString stringWithFormat: @"%@{index=%u, action=%@, animation=%@, offset=%.02f}", [super description], (unsigned)_index, actionDesc, animationDesc, _offset] );
111+
return ( [NSString stringWithFormat: @"%@{index=%u, action=%@, animation=%@, offset=%.02f}", [super description], (unsigned)_index, actionDesc, animationDesc, (double)_offset] );
112112
}
113113

114114
- (NSComparisonResult) compare: (AQGridViewUpdateItem *) other

0 commit comments

Comments
 (0)