Skip to content

Commit

Permalink
Merge pull request #69 from darrylhthomas/squelch-log-spam
Browse files Browse the repository at this point in the history
Squelch log spam
  • Loading branch information
AlanQuatermain committed May 31, 2011
2 parents 468b277 + 30fd9e7 commit 87774de
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Classes/AQGridView.m
Expand Up @@ -1432,7 +1432,7 @@ - (void) touchesEnded: (NSSet *) touches withEvent: (UIEvent *) event
selector: @selector(_gridViewDeferredTouchesBegan:)
object: nil];

UIView * hitView = [_touchedContentView retain];
UIView * hitView = _touchedContentView;
_touchedContentView = nil;

[super touchesEnded: touches withEvent: event];
Expand Down Expand Up @@ -1492,6 +1492,9 @@ - (void) touchesCancelled: (NSSet *) touches withEvent: (UIEvent *) event
_pendingSelectionIndex = NSNotFound;
[self highlightItemAtIndex: NSNotFound animated: NO scrollPosition: AQGridViewScrollPositionNone];
[super touchesCancelled: touches withEvent: event];

[_touchedContentView release];
_touchedContentView = nil;
}

- (void)doAddVisibleCell: (UIView *)cell
Expand Down

0 comments on commit 87774de

Please sign in to comment.