[vlc-commits] macosx: fix warning about missing method implementation
David Fuhrmann
git at videolan.org
Mon Sep 21 19:12:59 CEST 2015
vlc | branch: master | David Fuhrmann <dfuhrmann at videolan.org> | Sun Sep 20 14:19:40 2015 +0200| [3488ce79cf02dbbb001ef329da86d2dbd4cd25f2] | committer: David Fuhrmann
macosx: fix warning about missing method implementation
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3488ce79cf02dbbb001ef329da86d2dbd4cd25f2
---
modules/gui/macosx/prefs_widgets.h | 41 ++++++++++++++++++++++++++++++++++--
1 file changed, 39 insertions(+), 2 deletions(-)
diff --git a/modules/gui/macosx/prefs_widgets.h b/modules/gui/macosx/prefs_widgets.h
index 3f8c290..5ded295 100644
--- a/modules/gui/macosx/prefs_widgets.h
+++ b/modules/gui/macosx/prefs_widgets.h
@@ -46,8 +46,6 @@ static NSMenu *o_keys_menu = nil;
- (id)initWithFrame:(NSRect)frame
item:(module_config_t *)p_item;
-- (id)initWithItem:(module_config_t *)_p_item
- withView:(NSView *)o_parent_view;
- (void)setYPos:(int)i_yPos;
- (void)alignWithXPosition:(int)i_xPos;
@@ -59,62 +57,101 @@ static NSMenu *o_keys_menu = nil;
@interface StringConfigControl : VLCConfigControl
+- (id)initWithItem:(module_config_t *)_p_item
+ withView:(NSView *)o_parent_view;
+
@end
@interface StringListConfigControl : VLCConfigControl
+- (id)initWithItem:(module_config_t *)_p_item
+ withView:(NSView *)o_parent_view;
+
@end
@interface FileConfigControl : VLCConfigControl
+- (id)initWithItem:(module_config_t *)_p_item
+ withView:(NSView *)o_parent_view;
+
- (IBAction)openFileDialog:(id)sender;
@end
@interface ModuleConfigControl : VLCConfigControl
+- (id)initWithItem:(module_config_t *)_p_item
+ withView:(NSView *)o_parent_view;
+
@end
@interface IntegerConfigControl : VLCConfigControl
+- (id)initWithItem:(module_config_t *)_p_item
+ withView:(NSView *)o_parent_view;
+
- (IBAction)stepperChanged:(id)sender;
@end
@interface IntegerListConfigControl : VLCConfigControl
+- (id)initWithItem:(module_config_t *)_p_item
+ withView:(NSView *)o_parent_view;
+
@end
@interface RangedIntegerConfigControl : VLCConfigControl
+- (id)initWithItem:(module_config_t *)_p_item
+ withView:(NSView *)o_parent_view;
+
- (IBAction)sliderChanged:(id)sender;
@end
@interface BoolConfigControl : VLCConfigControl
+- (id)initWithItem:(module_config_t *)_p_item
+ withView:(NSView *)o_parent_view;
+
@end
@interface FloatConfigControl : VLCConfigControl
+- (id)initWithItem:(module_config_t *)_p_item
+ withView:(NSView *)o_parent_view;
+
- (IBAction)stepperChanged:(id)sender;
@end
@interface RangedFloatConfigControl : VLCConfigControl
+- (id)initWithItem:(module_config_t *)_p_item
+ withView:(NSView *)o_parent_view;
+
- (IBAction)sliderChanged:(id)sender;
@end
@interface KeyConfigControl : VLCConfigControl
+- (id)initWithItem:(module_config_t *)_p_item
+ withView:(NSView *)o_parent_view;
+
@end
@interface ModuleListConfigControl : VLCConfigControl
+- (id)initWithItem:(module_config_t *)_p_item
+ withView:(NSView *)o_parent_view;
+
@end
@interface SectionControl : VLCConfigControl
+- (id)initWithItem:(module_config_t *)_p_item
+ withView:(NSView *)o_parent_view;
+
@end
More information about the vlc-commits
mailing list