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
ac7ed5b9
Commit
ac7ed5b9
authored
Jan 28, 2005
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Two small bugs in the OSX intf
parent
67541262
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+1
-1
modules/gui/macosx/playlistinfo.m
modules/gui/macosx/playlistinfo.m
+1
-2
No files found.
modules/gui/macosx/playlist.m
View file @
ac7ed5b9
...
@@ -724,7 +724,7 @@ belongs to an Apple hidden private API, and then can "disapear" at any time*/
...
@@ -724,7 +724,7 @@ belongs to an Apple hidden private API, and then can "disapear" at any time*/
o_current_name
=
[
NSString
stringWithUTF8String
:
o_current_name
=
[
NSString
stringWithUTF8String
:
p_item
->
pp_children
[
i_current
]
->
input
.
psz_name
];
p_item
->
pp_children
[
i_current
]
->
input
.
psz_name
];
psz_temp
=
vlc_input_item_GetInfo
(
&
p_item
->
input
,
psz_temp
=
vlc_input_item_GetInfo
(
&
p_item
->
input
,
_
(
"Meta-information"
),
_
(
"A
uthor
"
)
);
_
(
"Meta-information"
),
_
(
"A
rtist
"
)
);
o_current_author
=
[
NSString
stringWithUTF8String
:
psz_temp
];
o_current_author
=
[
NSString
stringWithUTF8String
:
psz_temp
];
free
(
psz_temp
);
free
(
psz_temp
);
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
...
...
modules/gui/macosx/playlistinfo.m
View file @
ac7ed5b9
...
@@ -120,10 +120,9 @@
...
@@ -120,10 +120,9 @@
if
(
psz_temp
)
if
(
psz_temp
)
{
{
[
o_author_txt
setStringValue
:
[
NSString
stringWithUTF8String
:
psz_temp
]];
[
o_author_txt
setStringValue
:
[
NSString
stringWithUTF8String
:
psz_temp
]];
free
(
psz_temp
);
}
}
free
(
psz_temp
);
[[
VLCInfoTreeItem
rootItem
]
refresh
];
[[
VLCInfoTreeItem
rootItem
]
refresh
];
[
o_outline_view
reloadData
];
[
o_outline_view
reloadData
];
...
...
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