Skip to content

Commit

Permalink
LineView:Bug fix - add missing @synthesize.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Neylon committed Jun 30, 2011
1 parent 740ea49 commit 11fe14f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions LineView.m
Expand Up @@ -35,6 +35,7 @@ - (void)drawWithOffset:(CGPoint)offset;
@implementation LineView @implementation LineView


@synthesize color, lineWidth, a, b; @synthesize color, lineWidth, a, b;
@synthesize shadowMultiplicity;


- (id)initFromPoint:(CGPoint)a_ toPoint:(CGPoint)b_ { - (id)initFromPoint:(CGPoint)a_ toPoint:(CGPoint)b_ {
CGRect frame = CGRectMake(min(a_.x, b_.x) - kPadding, min(a_.y, b_.y) - kPadding, CGRect frame = CGRectMake(min(a_.x, b_.x) - kPadding, min(a_.y, b_.y) - kPadding,
Expand Down

0 comments on commit 11fe14f

Please sign in to comment.