]> git.sesse.net Git - vlc/commitdiff
macosx: fix selectorNotFound warnings of when compiling with llvm-gcc
authorDavid Fuhrmann <david.fuhrmann@googlemail.com>
Sun, 18 Nov 2012 12:19:52 +0000 (13:19 +0100)
committerDavid Fuhrmann <david.fuhrmann@googlemail.com>
Sun, 18 Nov 2012 12:21:40 +0000 (13:21 +0100)
modules/gui/macosx/AudioEffects.m
modules/gui/macosx/ControlsBar.m
modules/gui/macosx/ConvertAndSave.m
modules/gui/macosx/MainWindow.m
modules/gui/macosx/VideoEffects.m
modules/gui/macosx/Windows.m
modules/gui/macosx/bookmarks.m
modules/gui/macosx/intf.m
modules/gui/macosx/playlist.m

index f9d43315a207e928e5f783c6fa3655c39aa10cfc..db966be33a3c680ae078bbf483b0496c65ec749d 100644 (file)
 
 #import <math.h>
 
+@interface VLCAudioEffects (Internal)
+- (void)resetProfileSelector;
+- (void)updatePresetSelector;
+- (void)setBandSliderValuesForPreset:(NSInteger)presetID;
+@end
+
 #pragma mark -
 #pragma mark Initialization
 
index 6ea8edfb0c150d5e83715cc67b2f41730f6d92d0..ab5bff08d912e1de0d64b53012f9a92e627cf160 100644 (file)
  *  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
index 8fbac2439d0f429765930816c5aab147a2cbde0b..00146a339661935aa34dd814bd9d8f2f3194b7a4 100644 (file)
@@ -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
index 42f90176a3cabfd9236485e5581601229c328435..c2217f64afbf3ea2dc11b6540d37d9ab237d9989 100644 (file)
 #import "VLCVoutWindowController.h"
 
 
-@interface VLCMainWindow ()
+@interface VLCMainWindow (Internal)
 - (void)resizePlaylistAfterCollapse;
 - (void)makeSplitViewVisible;
 - (void)makeSplitViewHidden;
-
+- (void)showPodcastControls;
+- (void)hidePodcastControls;
 @end
 
 
index e3dffc86ce05659a231d4d845257bdb5ce3ead4f..bc0cb212e7be1ebce12f8464cdb11d8d0280d57c 100644 (file)
 #import "VideoEffects.h"
 #import "SharedDialogs.h"
 
+@interface VLCVideoEffects (Internal)
+- (void)resetProfileSelector;
+@end
+
 #pragma mark -
 #pragma mark Initialization
 
index 67ab5d063319f6b25dfdfd454c8de86fcb47b42d..4155f72f6a3505f84bd286cdbbb7a76e239a391b 100644 (file)
  *  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;
index aa87abf8bedf4c3bc3b7c9030b24739642542e09..3a64d146444316054cbd549918d8940c1c7a0bf2 100644 (file)
 #import <vlc_interface.h>
 #import "CompatibilityFixes.h"
 
+@interface VLCBookmarks (Internal)
+- (void)initStrings;
+@end
+
 @implementation VLCBookmarks
 
 static VLCBookmarks *_o_sharedInstance = nil;
index 3b21698d847c2e4b036154f5c58e92caf63ebb01..59a82e289a9c77ecbd2ad003552f23737feda534 100644 (file)
@@ -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;
index 682be91ed9ac9c0d3fda492806aedcebafca40dc..ee1d06aadac62f32b896c833a1fdf4c1c632382c 100644 (file)
 /*****************************************************************************
  * VLCPlaylist implementation
  *****************************************************************************/
+@interface VLCPlaylist (Internal)
+- (void)saveTableColumns;
+@end
+
 @implementation VLCPlaylist
 
 + (void)initialize{