Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
c45da6ba
Commit
c45da6ba
authored
Nov 18, 2012
by
David Fuhrmann
Browse files
macosx: fix selectorNotFound warnings of when compiling with llvm-gcc
parent
0edd5b36
Changes
9
Hide whitespace changes
Inline
Side-by-side
modules/gui/macosx/AudioEffects.m
View file @
c45da6ba
...
...
@@ -37,6 +37,12 @@
#import <math.h>
@interface
VLCAudioEffects
(
Internal
)
-
(
void
)
resetProfileSelector
;
-
(
void
)
updatePresetSelector
;
-
(
void
)
setBandSliderValuesForPreset
:(
NSInteger
)
presetID
;
@end
#pragma mark -
#pragma mark Initialization
...
...
modules/gui/macosx/ControlsBar.m
View file @
c45da6ba
...
...
@@ -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
...
...
modules/gui/macosx/ConvertAndSave.m
View file @
c45da6ba
...
...
@@ -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
...
...
modules/gui/macosx/MainWindow.m
View file @
c45da6ba
...
...
@@ -45,11 +45,12 @@
#import "VLCVoutWindowController.h"
@interface
VLCMainWindow
()
@interface
VLCMainWindow
(
Internal
)
-
(
void
)
resizePlaylistAfterCollapse
;
-
(
void
)
makeSplitViewVisible
;
-
(
void
)
makeSplitViewHidden
;
-
(
void
)
showPodcastControls
;
-
(
void
)
hidePodcastControls
;
@end
...
...
modules/gui/macosx/VideoEffects.m
View file @
c45da6ba
...
...
@@ -30,6 +30,10 @@
#import "VideoEffects.h"
#import "SharedDialogs.h"
@interface
VLCVideoEffects
(
Internal
)
-
(
void
)
resetProfileSelector
;
@end
#pragma mark -
#pragma mark Initialization
...
...
modules/gui/macosx/Windows.m
View file @
c45da6ba
...
...
@@ -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
;
...
...
modules/gui/macosx/bookmarks.m
View file @
c45da6ba
...
...
@@ -39,6 +39,10 @@
#import <vlc_interface.h>
#import "CompatibilityFixes.h"
@interface
VLCBookmarks
(
Internal
)
-
(
void
)
initStrings
;
@end
@implementation
VLCBookmarks
static
VLCBookmarks
*
_o_sharedInstance
=
nil
;
...
...
modules/gui/macosx/intf.m
View file @
c45da6ba
...
...
@@ -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
;
...
...
modules/gui/macosx/playlist.m
View file @
c45da6ba
...
...
@@ -403,6 +403,10 @@
/*****************************************************************************
* VLCPlaylist implementation
*****************************************************************************/
@interface
VLCPlaylist
(
Internal
)
-
(
void
)
saveTableColumns
;
@end
@implementation
VLCPlaylist
+
(
void
)
initialize
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment