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
189d534f
Commit
189d534f
authored
Jul 06, 2008
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor ui changes
Removed a useless dbg msg
parent
06ab53f3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
11 deletions
+8
-11
extras/package/macosx/Resources/English.lproj/MainMenu.nib/info.nib
...kage/macosx/Resources/English.lproj/MainMenu.nib/info.nib
+3
-3
extras/package/macosx/Resources/English.lproj/MainMenu.nib/keyedobjects.nib
...osx/Resources/English.lproj/MainMenu.nib/keyedobjects.nib
+0
-0
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+5
-8
No files found.
extras/package/macosx/Resources/English.lproj/MainMenu.nib/info.nib
View file @
189d534f
...
...
@@ -3,7 +3,7 @@
<plist
version=
"1.0"
>
<dict>
<key>
IBDocumentLocation
</key>
<string>
31 299
356 240 0 0 1280 778
</string>
<string>
69 71
356 240 0 0 1280 778
</string>
<key>
IBEditorPositions
</key>
<dict>
<key>
2197
</key>
...
...
@@ -21,12 +21,12 @@
<integer>
5
</integer>
<key>
IBOpenObjects
</key>
<array>
<integer>
2416
</integer>
<integer>
2197
</integer>
<integer>
29
</integer>
<integer>
282
</integer>
<integer>
21
</integer>
<integer>
29
</integer>
<integer>
915
</integer>
<integer>
2416
</integer>
</array>
<key>
IBSystem Version
</key>
<string>
9E17
</string>
...
...
extras/package/macosx/Resources/English.lproj/MainMenu.nib/keyedobjects.nib
View file @
189d534f
No preview for this file type
modules/gui/macosx/playlist.m
View file @
189d534f
...
...
@@ -292,7 +292,7 @@
}
else
{
o_value
=
@"-
:-
-:--"
;
o_value
=
@"--:--"
;
}
}
free
(
psz_artist
);
...
...
@@ -467,7 +467,7 @@
if
(
playlist_CurrentSize
(
p_playlist
)
>=
2
)
{
[
o_status_field
setStringValue
:
[
NSString
stringWithFormat
:
_NS
(
"%i items
in the playlist
"
),
_NS
(
"%i items"
),
playlist_CurrentSize
(
p_playlist
)]];
}
else
...
...
@@ -475,7 +475,7 @@
if
(
playlist_IsEmpty
(
p_playlist
)
)
[
o_status_field
setStringValue
:
_NS
(
"No items in the playlist"
)];
else
[
o_status_field
setStringValue
:
_NS
(
"1 item
in the playlist
"
)];
[
o_status_field
setStringValue
:
_NS
(
"1 item"
)];
}
vlc_object_release
(
p_playlist
);
}
...
...
@@ -1351,7 +1351,7 @@
if
(
playlist_CurrentSize
(
p_playlist
)
>=
2
)
{
[
o_status_field
setStringValue
:
[
NSString
stringWithFormat
:
_NS
(
"%i items
in the playlist
"
),
_NS
(
"%i items"
),
playlist_CurrentSize
(
p_playlist
)]];
}
else
...
...
@@ -1362,16 +1362,13 @@
}
else
{
[
o_status_field
setStringValue
:
_NS
(
"1 item
in the playlist
"
)];
[
o_status_field
setStringValue
:
_NS
(
"1 item"
)];
}
}
vlc_object_release
(
p_playlist
);
[
o_outline_dict
setObject
:
o_value
forKey
:[
NSString
stringWithFormat
:
@"%p"
,
[
o_value
pointerValue
]]];
#ifndef NDEBUG
msg_Dbg
(
VLCIntf
,
"adding item %p"
,
[
o_value
pointerValue
]
);
#endif
return
o_value
;
}
...
...
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