Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Khmurets <subzero@mapswithme.com>2014-01-11 15:55:57 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:10:10 +0300
commita4b54f1f354e589ddc1889d6aa4e80e2cf980f1a (patch)
treeba81cb36651660d6ebec03fccf44d9ad79a27e15 /iphone/Maps/Classes/ColorPickerView.mm
parentfedf07299ef4208236c15c3c3c836d2a4d36f3dc (diff)
[ios] Project now supports ARC
Diffstat (limited to 'iphone/Maps/Classes/ColorPickerView.mm')
-rw-r--r--iphone/Maps/Classes/ColorPickerView.mm7
1 files changed, 3 insertions, 4 deletions
diff --git a/iphone/Maps/Classes/ColorPickerView.mm b/iphone/Maps/Classes/ColorPickerView.mm
index 1db7f4d49b..dc5c55b8ba 100644
--- a/iphone/Maps/Classes/ColorPickerView.mm
+++ b/iphone/Maps/Classes/ColorPickerView.mm
@@ -42,7 +42,7 @@ static Tcolor const g_color [] =
self.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin|UIViewAutoresizingFlexibleRightMargin|
UIViewAutoresizingFlexibleTopMargin|UIViewAutoresizingFlexibleBottomMargin;
- UILabel * header = [[[UILabel alloc] initWithFrame:CGRectMake(0, 0, customWidth, HEADERHEIGHT)] autorelease];
+ UILabel * header = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, customWidth, HEADERHEIGHT)];
header.backgroundColor = [UIColor clearColor];
header.text = NSLocalizedString(@"bookmark_color", nil);
header.font = [UIFont fontWithName:@"Helvetica" size:20];
@@ -51,7 +51,7 @@ static Tcolor const g_color [] =
[self addSubview:header];
- UIView * line = [[[UIView alloc] initWithFrame:CGRectMake(0, HEADERHEIGHT - LINEHEIGHT, customWidth, LINEHEIGHT)] autorelease];
+ UIView * line = [[UIView alloc] initWithFrame:CGRectMake(0, HEADERHEIGHT - LINEHEIGHT, customWidth, LINEHEIGHT)];
line.backgroundColor = [UIColor colorWithRed:51/255.f green:204/255.f blue:255/255.f alpha:1];
[self addSubview:line];
@@ -67,7 +67,7 @@ static Tcolor const g_color [] =
CGFloat const selectionDiametr = buttonDiameter * 0.6;
CGFloat const origin = buttonDiameter / 2 - selectionDiametr / 2;
UIColor * col = [UIColor colorWithRed:1.f green:1.f blue:1.f alpha:1];
- CircleView * selectedCircle = [[[CircleView alloc] initWithFrame:CGRectMake(origin, origin, selectionDiametr, selectionDiametr) andColor:col] autorelease];
+ CircleView * selectedCircle = [[CircleView alloc] initWithFrame:CGRectMake(origin, origin, selectionDiametr, selectionDiametr) andColor:col];
[button setBackgroundImage:[CircleView createCircleImageWith:buttonDiameter andColor:c andSubview:selectedCircle] forState:UIControlStateNormal];
}
@@ -78,7 +78,6 @@ static Tcolor const g_color [] =
button.tag = i;
[button setContentMode:UIViewContentModeScaleAspectFit];
[self addSubview:button];
- [button release];
}
}
return self;