File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -708,7 +708,7 @@ @implementation CVWindow
708
708
@synthesize firstContent;
709
709
@synthesize sliders;
710
710
@synthesize status;
711
- #else
711
+ #else // 32-bit Obj-C does not have automatic synthesize
712
712
@synthesize mouseCallback = _mouseCallback;
713
713
@synthesize mouseParam = _mouseParam;
714
714
@synthesize autosize = _autosize;
@@ -745,7 +745,7 @@ - (void)cvSendMouseEvent:(NSEvent *)event type:(int)type flags:(int)flags {
745
745
746
746
- (void )cvMouseEvent : (NSEvent *)event {
747
747
// cout << "cvMouseEvent" << endl;
748
-
748
+
749
749
if ([self mouseCallback ] == nil )
750
750
return ;
751
751
@@ -864,7 +864,7 @@ - (CVView *)contentView {
864
864
@implementation CVView
865
865
#if defined(__LP64__)
866
866
@synthesize image;
867
- #else
867
+ #else // 32-bit Obj-C does not have automatic synthesize
868
868
@synthesize image = _image;
869
869
#endif
870
870
@@ -1000,8 +1000,7 @@ @implementation CVSlider
1000
1000
@synthesize userData;
1001
1001
@synthesize callback;
1002
1002
@synthesize callback2;
1003
- #else
1004
- // 32-bit Obj-C does not have automatic synthesize
1003
+ #else // 32-bit Obj-C does not have automatic synthesize
1005
1004
@synthesize slider = _slider;
1006
1005
@synthesize name = _name;
1007
1006
@synthesize value = _value;
You can’t perform that action at this time.
0 commit comments