Commit c45da6ba authored by David Fuhrmann's avatar David Fuhrmann

macosx: fix selectorNotFound warnings of when compiling with llvm-gcc

parent 0edd5b36
...@@ -37,6 +37,12 @@ ...@@ -37,6 +37,12 @@
#import <math.h> #import <math.h>
@interface VLCAudioEffects (Internal)
- (void)resetProfileSelector;
- (void)updatePresetSelector;
- (void)setBandSliderValuesForPreset:(NSInteger)presetID;
@end
#pragma mark - #pragma mark -
#pragma mark Initialization #pragma mark Initialization
......
...@@ -368,6 +368,13 @@ ...@@ -368,6 +368,13 @@
* Holds all specific outlets, actions and code for the main window controls bar. * Holds all specific outlets, actions and code for the main window controls bar.
*****************************************************************************/ *****************************************************************************/
@interface VLCMainWindowControlsBar (Internal)
- (void)addJumpButtons:(BOOL)b_fast;
- (void)removeJumpButtons:(BOOL)b_fast;
- (void)addPlaymodeButtons:(BOOL)b_fast;
- (void)removePlaymodeButtons:(BOOL)b_fast;
@end
@implementation VLCMainWindowControlsBar @implementation VLCMainWindowControlsBar
- (void)awakeFromNib - (void)awakeFromNib
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
#define ASF 12 #define ASF 12
/* 13-15 are present, but not set */ /* 13-15 are present, but not set */
@interface VLCConvertAndSave () @interface VLCConvertAndSave (Internal)
- (void)updateDropView; - (void)updateDropView;
- (void)updateOKButton; - (void)updateOKButton;
- (void)resetCustomizationSheetBasedOnProfile:(NSString *)profileString; - (void)resetCustomizationSheetBasedOnProfile:(NSString *)profileString;
...@@ -53,6 +53,7 @@ ...@@ -53,6 +53,7 @@
- (NSString *)composedOptions; - (NSString *)composedOptions;
- (void)updateCurrentProfile; - (void)updateCurrentProfile;
- (void)storeProfilesOnDisk; - (void)storeProfilesOnDisk;
- (void)recreateProfilePopup;
@end @end
@implementation VLCConvertAndSave @implementation VLCConvertAndSave
......
...@@ -45,11 +45,12 @@ ...@@ -45,11 +45,12 @@
#import "VLCVoutWindowController.h" #import "VLCVoutWindowController.h"
@interface VLCMainWindow () @interface VLCMainWindow (Internal)
- (void)resizePlaylistAfterCollapse; - (void)resizePlaylistAfterCollapse;
- (void)makeSplitViewVisible; - (void)makeSplitViewVisible;
- (void)makeSplitViewHidden; - (void)makeSplitViewHidden;
- (void)showPodcastControls;
- (void)hidePodcastControls;
@end @end
......
...@@ -30,6 +30,10 @@ ...@@ -30,6 +30,10 @@
#import "VideoEffects.h" #import "VideoEffects.h"
#import "SharedDialogs.h" #import "SharedDialogs.h"
@interface VLCVideoEffects (Internal)
- (void)resetProfileSelector;
@end
#pragma mark - #pragma mark -
#pragma mark Initialization #pragma mark Initialization
......
...@@ -228,6 +228,13 @@ ...@@ -228,6 +228,13 @@
* Common code for main window, detached window and extra video window * Common code for main window, detached window and extra video window
*****************************************************************************/ *****************************************************************************/
@interface VLCVideoWindowCommon (Internal)
- (void)customZoom:(id)sender;
- (void)hasBecomeFullscreen;
- (void)leaveFullscreenAndFadeOut:(BOOL)fadeout;
- (void)hasEndedFullscreen;
@end
@implementation VLCVideoWindowCommon @implementation VLCVideoWindowCommon
@synthesize videoView=o_video_view; @synthesize videoView=o_video_view;
......
...@@ -39,6 +39,10 @@ ...@@ -39,6 +39,10 @@
#import <vlc_interface.h> #import <vlc_interface.h>
#import "CompatibilityFixes.h" #import "CompatibilityFixes.h"
@interface VLCBookmarks (Internal)
- (void)initStrings;
@end
@implementation VLCBookmarks @implementation VLCBookmarks
static VLCBookmarks *_o_sharedInstance = nil; static VLCBookmarks *_o_sharedInstance = nil;
......
...@@ -543,7 +543,13 @@ audio_output_t *getAout(void) ...@@ -543,7 +543,13 @@ audio_output_t *getAout(void)
#pragma mark Private #pragma mark Private
@interface VLCMain () @interface VLCMain ()
- (void)_removeOldPreferences; - (void)removeOldPreferences;
@end
@interface VLCMain (Internal)
- (void)handlePortMessage:(NSPortMessage *)o_msg;
- (void)resetMediaKeyJump;
- (void)coreChangedMediaKeySupportSetting: (NSNotification *)o_notification;
@end @end
/***************************************************************************** /*****************************************************************************
...@@ -723,7 +729,7 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -723,7 +729,7 @@ static VLCMain *_o_sharedMainInstance = nil;
} }
[[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(coreChangedMediaKeySupportSetting:) name: @"VLCMediaKeySupportSettingChanged" object: nil]; [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(coreChangedMediaKeySupportSetting:) name: @"VLCMediaKeySupportSettingChanged" object: nil];
[self _removeOldPreferences]; [self removeOldPreferences];
/* Handle sleep notification */ /* Handle sleep notification */
[[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(computerWillSleep:) [[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(computerWillSleep:)
...@@ -1733,7 +1739,7 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -1733,7 +1739,7 @@ static VLCMain *_o_sharedMainInstance = nil;
#pragma mark - #pragma mark -
#pragma mark Remove old prefs #pragma mark Remove old prefs
- (void)_removeOldPreferences - (void)removeOldPreferences
{ {
static NSString * kVLCPreferencesVersion = @"VLCPreferencesVersion"; static NSString * kVLCPreferencesVersion = @"VLCPreferencesVersion";
static const int kCurrentPreferencesVersion = 2; static const int kCurrentPreferencesVersion = 2;
......
...@@ -403,6 +403,10 @@ ...@@ -403,6 +403,10 @@
/***************************************************************************** /*****************************************************************************
* VLCPlaylist implementation * VLCPlaylist implementation
*****************************************************************************/ *****************************************************************************/
@interface VLCPlaylist (Internal)
- (void)saveTableColumns;
@end
@implementation VLCPlaylist @implementation VLCPlaylist
+ (void)initialize{ + (void)initialize{
......
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