Skip to content

Commit

Permalink
Fixed reference to RMMarker instance variable that was rename in Rev.…
Browse files Browse the repository at this point in the history
…523 to allow compiling of project.
  • Loading branch information
D Bainbridge committed Mar 28, 2010
1 parent a69f4a4 commit 5dbd0f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/SimpleMap/Classes/MapViewViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ - (void) tapOnMarker: (RMMarker*) marker onMap: (RMMapView*) map

- (void) tapOnLabelForMarker:(RMMarker*) marker onMap:(RMMapView*) map
{
NSLog(@"Label <0x%x, RC:%U> tapped for marker <0x%x, RC:%U>", marker.labelView, [marker.labelView retainCount], marker, [marker retainCount]);
NSLog(@"Label <0x%x, RC:%U> tapped for marker <0x%x, RC:%U>", marker.label, [marker.label retainCount], marker, [marker retainCount]);
[marker changeLabelUsingText:[NSString stringWithFormat:@"Tapped! (%U)", ++tapCount]];
}

Expand Down

0 comments on commit 5dbd0f5

Please sign in to comment.