Skip to content

Commit b78f460

Browse files
committed
Fix compilation under Xcode 6.1
1 parent c3d0a0a commit b78f460

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

Butter/BTRPopUpButton.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ @interface BTRPopUpButtonContent : BTRControlContent
2929
@end
3030

3131
@implementation BTRPopUpButton
32+
@synthesize menu = _menu;
3233

3334
#pragma mark - Initialization
3435

Butter/BTRSecureTextField.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ @interface BTRSecureTextFieldCell : NSSecureTextFieldCell
4242
@implementation BTRSecureTextField {
4343
BOOL _btrDrawsBackground;
4444
}
45+
@synthesize highlighted = _highlighted;
4546

4647
// Because properties declared in protocols are not automatically synthesized.
4748
@synthesize drawsFocusRing = _drawsFocusRing;

Butter/BTRTextField.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ @interface BTRTextFieldCell : NSTextFieldCell
4242
@implementation BTRTextField {
4343
BOOL _btrDrawsBackground;
4444
}
45+
@synthesize highlighted = _highlighted;
4546

4647
// Because properties declared in protocols are not automatically synthesized.
4748
@synthesize drawsFocusRing = _drawsFocusRing;

Butter/BTRView.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
@implementation BTRView {
1313
BOOL drawFlag;
1414
}
15+
@synthesize flipped = _flipped;
1516

1617
#pragma mark Properties
1718

0 commit comments

Comments
 (0)