[vlc-commits] macOS: Correct invalid Objective C code
    Marvin Scholz 
    git at videolan.org
       
    Sat Jun 24 12:53:13 CEST 2017
    
    
  
vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Sat Jun 24 12:53:00 2017 +0200| [c1abf5b7e7d3f3c0a86881c4d3ca868b5af65f4d] | committer: Marvin Scholz
macOS: Correct invalid Objective C code
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c1abf5b7e7d3f3c0a86881c4d3ca868b5af65f4d
---
 modules/gui/macosx/VLCHUDStepperCell.m | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/modules/gui/macosx/VLCHUDStepperCell.m b/modules/gui/macosx/VLCHUDStepperCell.m
index 9cf552ea2b..ee97b1c57c 100644
--- a/modules/gui/macosx/VLCHUDStepperCell.m
+++ b/modules/gui/macosx/VLCHUDStepperCell.m
@@ -35,7 +35,7 @@
 #import "VLCHUDStepperCell.h"
 #import "CompatibilityFixes.h"
 
- at implementation VLCHUDStepperCell {
+ at interface VLCHUDStepperCell () {
     int topButtonFlag;
     int bottomButtonFlag;
 
@@ -45,6 +45,10 @@
     BOOL isBottomDown;
 }
 
+ at end
+
+ at implementation VLCHUDStepperCell
+
 - (instancetype)initWithCoder:(NSCoder *)coder
 {
     self = [super initWithCoder:coder];
    
    
More information about the vlc-commits
mailing list