Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
698c5d06
Commit
698c5d06
authored
Mar 31, 2004
by
Benjamin Pracht
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Also fallis back to C string if UTF8 string fails in proprieties window.
parent
60421fb8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
+1
-1
extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
...s/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
+0
-0
modules/gui/macosx/playlistinfo.m
modules/gui/macosx/playlistinfo.m
+4
-2
No files found.
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
View file @
698c5d06
...
...
@@ -3,7 +3,7 @@
<plist
version=
"1.0"
>
<dict>
<key>
IBDocumentLocation
</key>
<string>
4
86 129
505 517 0 0 1024 746
</string>
<string>
4
09 195
505 517 0 0 1024 746
</string>
<key>
IBEditorPositions
</key>
<dict>
<key>
1617
</key>
...
...
extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
View file @
698c5d06
No preview for this file type
modules/gui/macosx/playlistinfo.m
View file @
698c5d06
...
...
@@ -69,14 +69,16 @@
[
o_uri_txt
setStringValue
:
([
NSString
stringWithUTF8String
:
p_playlist
->
pp_items
[
i_item
]
->
psz_uri
]
==
nil
)
?
@""
:
[
NSString
stringWithCString
:
p_playlist
->
pp_items
[
i_item
]
->
psz_uri
]
:
[
NSString
stringWithUTF8String
:
p_playlist
->
pp_items
[
i_item
]
->
psz_uri
]];
[
o_title_txt
setStringValue
:
([
NSString
stringWithUTF8String
:
p_playlist
->
pp_items
[
i_item
]
->
psz_name
]
==
nil
)
?
@""
:
[
NSString
stringWithCString
:
p_playlist
->
pp_items
[
i_item
]
->
psz_name
]
:
[
NSString
stringWithUTF8String
:
p_playlist
->
pp_items
[
i_item
]
->
psz_name
]];
...
...
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