Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
f9b872ba
Commit
f9b872ba
authored
Sep 04, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: removed dead code
parent
1f18696f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
14 deletions
+1
-14
modules/gui/macosx/intf.h
modules/gui/macosx/intf.h
+1
-4
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+0
-10
No files found.
modules/gui/macosx/intf.h
View file @
f9b872ba
...
...
@@ -85,7 +85,6 @@ struct intf_sys_t
id
o_sprefs
;
/* VLCSimplePrefs */
id
o_open
;
/* VLCOpen */
id
o_wizard
;
/* VLCWizard */
id
o_embedded_list
;
/* VLCEmbeddedList*/
id
o_coredialogs
;
/* VLCCoreDialogProvider */
id
o_info
;
/* VLCInformation */
id
o_eyetv
;
/* VLCEyeTVController */
...
...
@@ -158,7 +157,6 @@ struct intf_sys_t
-
(
id
)
playlist
;
-
(
id
)
info
;
-
(
id
)
wizard
;
-
(
id
)
embeddedList
;
-
(
id
)
getVideoViewAtPositionX
:
(
int
*
)
pi_x
Y
:
(
int
*
)
pi_y
withWidth
:
(
unsigned
int
*
)
pi_width
andHeight
:
(
unsigned
int
*
)
pi_height
;
-
(
void
)
setNativeVideoSize
:(
NSSize
)
size
;
-
(
id
)
coreDialogProvider
;
...
...
@@ -214,6 +212,5 @@ struct intf_sys_t
*****************************************************************************/
@interface
VLCApplication
:
NSApplication
{
}
@end
modules/gui/macosx/intf.m
View file @
f9b872ba
...
...
@@ -524,7 +524,6 @@ static VLCMain *_o_sharedMainInstance = nil;
o_msg_arr
=
[[
NSMutableArray
arrayWithCapacity
:
600
]
retain
];
o_open
=
[[
VLCOpen
alloc
]
init
];
//o_embedded_list = [[VLCEmbeddedList alloc] init];
o_coredialogs
=
[[
VLCCoreDialogProvider
alloc
]
init
];
o_info
=
[[
VLCInfo
alloc
]
init
];
o_mainmenu
=
[[
VLCMainMenu
alloc
]
init
];
...
...
@@ -793,7 +792,6 @@ static VLCMain *_o_sharedMainInstance = nil;
[
crashLogURLConnection
cancel
];
[
crashLogURLConnection
release
];
[
o_embedded_list
release
];
[
o_coredialogs
release
];
[
o_eyetv
release
];
...
...
@@ -1509,14 +1507,6 @@ static VLCMain *_o_sharedMainInstance = nil;
return
videoView
;
}
-
(
id
)
embeddedList
{
if
(
o_embedded_list
)
return
o_embedded_list
;
return
nil
;
}
-
(
id
)
coreDialogProvider
{
if
(
o_coredialogs
)
...
...
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