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
2474e3dc
Commit
2474e3dc
authored
Jul 08, 2007
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* replaced a couple of to-be-deprecated cStrings by UTF8Strings
parent
95bb60a2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+4
-4
modules/gui/macosx/prefs_widgets.m
modules/gui/macosx/prefs_widgets.m
+1
-1
No files found.
modules/gui/macosx/playlist.m
View file @
2474e3dc
...
...
@@ -819,13 +819,13 @@
NSMenuItem
*
o_mi
=
(
NSMenuItem
*
)
sender
;
NSString
*
o_string
=
[
o_mi
representedObject
];
playlist_t
*
p_playlist
=
pl_Yield
(
VLCIntf
);
if
(
!
playlist_IsServicesDiscoveryLoaded
(
p_playlist
,
[
o_string
c
String
]
)
)
playlist_ServicesDiscoveryAdd
(
p_playlist
,
[
o_string
c
String
]
);
if
(
!
playlist_IsServicesDiscoveryLoaded
(
p_playlist
,
[
o_string
UTF8
String
]
)
)
playlist_ServicesDiscoveryAdd
(
p_playlist
,
[
o_string
UTF8
String
]
);
else
playlist_ServicesDiscoveryRemove
(
p_playlist
,
[
o_string
c
String
]
);
playlist_ServicesDiscoveryRemove
(
p_playlist
,
[
o_string
UTF8
String
]
);
[
o_mi
setState
:
playlist_IsServicesDiscoveryLoaded
(
p_playlist
,
[
o_string
c
String
]
)
?
YES
:
NO
];
[
o_string
UTF8
String
]
)
?
YES
:
NO
];
vlc_object_release
(
p_playlist
);
[
self
playlistUpdated
];
...
...
modules/gui/macosx/prefs_widgets.m
View file @
2474e3dc
...
...
@@ -2215,7 +2215,7 @@ if( _p_item->i_type == CONFIG_ITEM_MODULE_LIST )
-
(
char
*
)
stringValue
{
return
strdup
(
[[
o_textfield
stringValue
]
c
String
]
);
return
strdup
(
[[
o_textfield
stringValue
]
UTF8
String
]
);
}
@end
...
...
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