Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
7bfc0c63
Commit
7bfc0c63
authored
Aug 30, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: the deprecated vlc_object_get takes 2 args now.
parent
52be1354
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/gui/macosx/controls.m
modules/gui/macosx/controls.m
+1
-1
modules/gui/macosx/prefs.m
modules/gui/macosx/prefs.m
+1
-1
No files found.
modules/gui/macosx/controls.m
View file @
7bfc0c63
...
...
@@ -766,7 +766,7 @@
vlc_thread_set_priority
(
VLCIntf
,
VLC_THREAD_PRIORITY_LOW
);
p_object
=
(
vlc_object_t
*
)
vlc_object_get
(
[
o_data
objectID
]
);
p_object
=
(
vlc_object_t
*
)
vlc_object_get
(
VLCIntf
->
p_libvlc
,
[
o_data
objectID
]
);
if
(
p_object
!=
NULL
)
{
...
...
modules/gui/macosx/prefs.m
View file @
7bfc0c63
...
...
@@ -531,7 +531,7 @@ static VLCTreeItem *o_root_item = nil;
/* Get a pointer to the module */
if
(
i_object_category
==
-
1
)
{
p_module
=
(
module_t
*
)
vlc_object_get
(
i_object_id
);
p_module
=
(
module_t
*
)
vlc_object_get
(
p_intf
->
p_libvlc
,
i_object_id
);
assert
(
p_module
);
p_items
=
module_GetConfig
(
p_module
,
&
confsize
);
...
...
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