Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
6e617473
Commit
6e617473
authored
Oct 03, 2013
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: playlist cosmetics
parent
f1278f3f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
12 deletions
+4
-12
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+4
-12
No files found.
modules/gui/macosx/playlist.m
View file @
6e617473
/*****************************************************************************
* playlist.m: MacOS X interface module
*****************************************************************************
* Copyright (C) 2002-201
2
VLC authors and VideoLAN
* Copyright (C) 2002-201
3
VLC authors and VideoLAN
* $Id$
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
...
...
@@ -51,7 +51,6 @@
#include <vlc_keys.h>
#import <vlc_interface.h>
#include <vlc_url.h>
/*****************************************************************************
...
...
@@ -98,18 +97,18 @@
return
NO
;
}
-
(
BOOL
)
acceptsFirstResponder
-
(
BOOL
)
acceptsFirstResponder
{
return
YES
;
}
-
(
BOOL
)
becomeFirstResponder
-
(
BOOL
)
becomeFirstResponder
{
[
self
setNeedsDisplay
:
YES
];
return
YES
;
}
-
(
BOOL
)
resignFirstResponder
-
(
BOOL
)
resignFirstResponder
{
[
self
setNeedsDisplay
:
YES
];
return
YES
;
...
...
@@ -880,9 +879,6 @@
NSUInteger
indexes
[
i_count
];
if
(
i_count
==
[
o_outline_view
numberOfRows
])
{
#ifndef NDEBUG
msg_Dbg
(
p_intf
,
"user selected entire list, deleting current playlist root instead of individual items"
);
#endif
PL_LOCK
;
playlist_NodeDelete
(
p_playlist
,
[
self
currentPlaylistRoot
],
true
,
false
);
PL_UNLOCK
;
...
...
@@ -900,10 +896,6 @@
PL_UNLOCK
;
continue
;
}
#ifndef NDEBUG
msg_Dbg
(
p_intf
,
"deleting item %i (of %i) with id
\"
%i
\"
, pointerValue
\"
%p
\"
and %i children"
,
i
+
1
,
i_count
,
p_item
->
p_input
->
i_id
,
[
o_item
pointerValue
],
p_item
->
i_children
+
1
);
#endif
if
(
p_item
->
i_children
!=
-
1
)
{
//is a node and not an item
...
...
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