Skip to content

Commit

Permalink
a little code style cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
btjones committed Sep 4, 2011
1 parent e34072c commit 54e5d42
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ArtAround/Classes/Views&Controllers/MapView.m
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ - (id)initWithFrame:(CGRect)frame
[aMap release];

//setup the map view
[[self map] setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight];
[[self map] setShowsUserLocation:YES];
[self addSubview:[self map]];
[self.map setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight];
[self.map setShowsUserLocation:YES];
[self addSubview:self.map];

//initialize the share button
UIButton *aShareButton = [UIButton buttonWithType:UIButtonTypeCustom];
Expand Down

0 comments on commit 54e5d42

Please sign in to comment.