Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
c45da6ba
Commit
c45da6ba
authored
Nov 18, 2012
by
David Fuhrmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fix selectorNotFound warnings of when compiling with llvm-gcc
parent
0edd5b36
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
46 additions
and
6 deletions
+46
-6
modules/gui/macosx/AudioEffects.m
modules/gui/macosx/AudioEffects.m
+6
-0
modules/gui/macosx/ControlsBar.m
modules/gui/macosx/ControlsBar.m
+7
-0
modules/gui/macosx/ConvertAndSave.m
modules/gui/macosx/ConvertAndSave.m
+2
-1
modules/gui/macosx/MainWindow.m
modules/gui/macosx/MainWindow.m
+3
-2
modules/gui/macosx/VideoEffects.m
modules/gui/macosx/VideoEffects.m
+4
-0
modules/gui/macosx/Windows.m
modules/gui/macosx/Windows.m
+7
-0
modules/gui/macosx/bookmarks.m
modules/gui/macosx/bookmarks.m
+4
-0
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+9
-3
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+4
-0
No files found.
modules/gui/macosx/AudioEffects.m
View file @
c45da6ba
...
@@ -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
...
...
modules/gui/macosx/ControlsBar.m
View file @
c45da6ba
...
@@ -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
...
...
modules/gui/macosx/ConvertAndSave.m
View file @
c45da6ba
...
@@ -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
...
...
modules/gui/macosx/MainWindow.m
View file @
c45da6ba
...
@@ -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
...
...
modules/gui/macosx/VideoEffects.m
View file @
c45da6ba
...
@@ -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
...
...
modules/gui/macosx/Windows.m
View file @
c45da6ba
...
@@ -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
;
...
...
modules/gui/macosx/bookmarks.m
View file @
c45da6ba
...
@@ -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
;
...
...
modules/gui/macosx/intf.m
View file @
c45da6ba
...
@@ -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
;
...
...
modules/gui/macosx/playlist.m
View file @
c45da6ba
...
@@ -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
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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