Skip to content
This repository has been archived by the owner on Jan 24, 2022. It is now read-only.

Commit

Permalink
fix a missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
kirb committed Aug 1, 2013
1 parent dcd8c05 commit 61d2ceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prefs/HBTSHeaderCell.m
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reus
statusLabel.frame = CGRectMake(typeLabel.frame.origin.x + typeLabel.frame.size.width, typeLabel.frame.origin.y, [statusLabel.text sizeWithFont:statusLabel.font].width, imageView.image.size.height);
containerView.frame = CGRectMake(0, typeLabel.frame.origin.y, statusLabel.frame.origin.x + statusLabel.frame.size.width, imageView.image.size.height);
containerView.center = CGPointMake(self.contentView.frame.size.width / 2.f, containerView.center.y);
imageView.center = CGPointMake(imageView.center.x, containerView.frame.size.height / 2.f)
imageView.center = CGPointMake(imageView.center.x, containerView.frame.size.height / 2.f);
}

return self;
Expand Down

0 comments on commit 61d2ceb

Please sign in to comment.