Skip to content

Commit

Permalink
Merge remote-tracking branch 'github-alanquatermain/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
evadne committed Sep 29, 2012
2 parents b3270c6 + 48c9a64 commit 7c78b64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/AQGridViewUpdateItem.m
Expand Up @@ -81,7 +81,7 @@ - (NSString *) description
}

NSString * animationDesc = @"<Unknown>";
switch ( _animation )
switch ( (UITableViewRowAnimation)_animation )
{
case UITableViewRowAnimationFade:
animationDesc = @"Fade";
Expand All @@ -108,7 +108,7 @@ - (NSString *) description
break;
}

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

- (NSComparisonResult) compare: (AQGridViewUpdateItem *) other
Expand Down

1 comment on commit 7c78b64

@paolonl
Copy link

@paolonl paolonl commented on 7c78b64 Aug 7, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it possible to create a tag (e.g. 1.3.1) of this commit?

Please sign in to comment.