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 @@
#import <math.h>
@interface VLCAudioEffects (Internal)
- (void)resetProfileSelector;
- (void)updatePresetSelector;
- (void)setBandSliderValuesForPreset:(NSInteger)presetID;
@end
#pragma mark -
#pragma mark Initialization
......
......@@ -368,6 +368,13 @@
* 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
- (void)awakeFromNib
......
......@@ -44,7 +44,7 @@
#define ASF 12
/* 13-15 are present, but not set */
@interface VLCConvertAndSave ()
@interface VLCConvertAndSave (Internal)
- (void)updateDropView;
- (void)updateOKButton;
- (void)resetCustomizationSheetBasedOnProfile:(NSString *)profileString;
......@@ -53,6 +53,7 @@
- (NSString *)composedOptions;
- (void)updateCurrentProfile;
- (void)storeProfilesOnDisk;
- (void)recreateProfilePopup;
@end
@implementation VLCConvertAndSave
......
......@@ -45,11 +45,12 @@
#import "VLCVoutWindowController.h"
@interface VLCMainWindow ()
@interface VLCMainWindow (Internal)
- (void)resizePlaylistAfterCollapse;
- (void)makeSplitViewVisible;
- (void)makeSplitViewHidden;
- (void)showPodcastControls;
- (void)hidePodcastControls;
@end
......
......@@ -30,6 +30,10 @@
#import "VideoEffects.h"
#import "SharedDialogs.h"
@interface VLCVideoEffects (Internal)
- (void)resetProfileSelector;
@end
#pragma mark -
#pragma mark Initialization
......
......@@ -228,6 +228,13 @@
* 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
@synthesize videoView=o_video_view;
......
......@@ -39,6 +39,10 @@
#import <vlc_interface.h>
#import "CompatibilityFixes.h"
@interface VLCBookmarks (Internal)
- (void)initStrings;
@end
@implementation VLCBookmarks
static VLCBookmarks *_o_sharedInstance = nil;
......
......@@ -543,7 +543,13 @@ audio_output_t *getAout(void)
#pragma mark Private
@interface VLCMain ()
- (void)_removeOldPreferences;
- (void)removeOldPreferences;
@end
@interface VLCMain (Internal)
- (void)handlePortMessage:(NSPortMessage *)o_msg;
- (void)resetMediaKeyJump;
- (void)coreChangedMediaKeySupportSetting: (NSNotification *)o_notification;
@end
/*****************************************************************************
......@@ -723,7 +729,7 @@ static VLCMain *_o_sharedMainInstance = nil;
}
[[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(coreChangedMediaKeySupportSetting:) name: @"VLCMediaKeySupportSettingChanged" object: nil];
[self _removeOldPreferences];
[self removeOldPreferences];
/* Handle sleep notification */
[[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(computerWillSleep:)
......@@ -1733,7 +1739,7 @@ static VLCMain *_o_sharedMainInstance = nil;
#pragma mark -
#pragma mark Remove old prefs
- (void)_removeOldPreferences
- (void)removeOldPreferences
{
static NSString * kVLCPreferencesVersion = @"VLCPreferencesVersion";
static const int kCurrentPreferencesVersion = 2;
......
......@@ -403,6 +403,10 @@
/*****************************************************************************
* VLCPlaylist implementation
*****************************************************************************/
@interface VLCPlaylist (Internal)
- (void)saveTableColumns;
@end
@implementation VLCPlaylist
+ (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