Commit 3488ce79 authored by David Fuhrmann's avatar David Fuhrmann

macosx: fix warning about missing method implementation

parent 177679d4
...@@ -46,8 +46,6 @@ static NSMenu *o_keys_menu = nil; ...@@ -46,8 +46,6 @@ static NSMenu *o_keys_menu = nil;
- (id)initWithFrame:(NSRect)frame - (id)initWithFrame:(NSRect)frame
item:(module_config_t *)p_item; item:(module_config_t *)p_item;
- (id)initWithItem:(module_config_t *)_p_item
withView:(NSView *)o_parent_view;
- (void)setYPos:(int)i_yPos; - (void)setYPos:(int)i_yPos;
- (void)alignWithXPosition:(int)i_xPos; - (void)alignWithXPosition:(int)i_xPos;
...@@ -59,62 +57,101 @@ static NSMenu *o_keys_menu = nil; ...@@ -59,62 +57,101 @@ static NSMenu *o_keys_menu = nil;
@interface StringConfigControl : VLCConfigControl @interface StringConfigControl : VLCConfigControl
- (id)initWithItem:(module_config_t *)_p_item
withView:(NSView *)o_parent_view;
@end @end
@interface StringListConfigControl : VLCConfigControl @interface StringListConfigControl : VLCConfigControl
- (id)initWithItem:(module_config_t *)_p_item
withView:(NSView *)o_parent_view;
@end @end
@interface FileConfigControl : VLCConfigControl @interface FileConfigControl : VLCConfigControl
- (id)initWithItem:(module_config_t *)_p_item
withView:(NSView *)o_parent_view;
- (IBAction)openFileDialog:(id)sender; - (IBAction)openFileDialog:(id)sender;
@end @end
@interface ModuleConfigControl : VLCConfigControl @interface ModuleConfigControl : VLCConfigControl
- (id)initWithItem:(module_config_t *)_p_item
withView:(NSView *)o_parent_view;
@end @end
@interface IntegerConfigControl : VLCConfigControl @interface IntegerConfigControl : VLCConfigControl
- (id)initWithItem:(module_config_t *)_p_item
withView:(NSView *)o_parent_view;
- (IBAction)stepperChanged:(id)sender; - (IBAction)stepperChanged:(id)sender;
@end @end
@interface IntegerListConfigControl : VLCConfigControl @interface IntegerListConfigControl : VLCConfigControl
- (id)initWithItem:(module_config_t *)_p_item
withView:(NSView *)o_parent_view;
@end @end
@interface RangedIntegerConfigControl : VLCConfigControl @interface RangedIntegerConfigControl : VLCConfigControl
- (id)initWithItem:(module_config_t *)_p_item
withView:(NSView *)o_parent_view;
- (IBAction)sliderChanged:(id)sender; - (IBAction)sliderChanged:(id)sender;
@end @end
@interface BoolConfigControl : VLCConfigControl @interface BoolConfigControl : VLCConfigControl
- (id)initWithItem:(module_config_t *)_p_item
withView:(NSView *)o_parent_view;
@end @end
@interface FloatConfigControl : VLCConfigControl @interface FloatConfigControl : VLCConfigControl
- (id)initWithItem:(module_config_t *)_p_item
withView:(NSView *)o_parent_view;
- (IBAction)stepperChanged:(id)sender; - (IBAction)stepperChanged:(id)sender;
@end @end
@interface RangedFloatConfigControl : VLCConfigControl @interface RangedFloatConfigControl : VLCConfigControl
- (id)initWithItem:(module_config_t *)_p_item
withView:(NSView *)o_parent_view;
- (IBAction)sliderChanged:(id)sender; - (IBAction)sliderChanged:(id)sender;
@end @end
@interface KeyConfigControl : VLCConfigControl @interface KeyConfigControl : VLCConfigControl
- (id)initWithItem:(module_config_t *)_p_item
withView:(NSView *)o_parent_view;
@end @end
@interface ModuleListConfigControl : VLCConfigControl @interface ModuleListConfigControl : VLCConfigControl
- (id)initWithItem:(module_config_t *)_p_item
withView:(NSView *)o_parent_view;
@end @end
@interface SectionControl : VLCConfigControl @interface SectionControl : VLCConfigControl
- (id)initWithItem:(module_config_t *)_p_item
withView:(NSView *)o_parent_view;
@end @end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment