Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
0e081263
Commit
0e081263
authored
Mar 07, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mac OS X gui: Small code cleanup. Remove NSLogs, avoid code redundancy.
parent
897efe1b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
10 deletions
+3
-10
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+3
-10
No files found.
modules/gui/macosx/playlist.m
View file @
0e081263
...
...
@@ -172,7 +172,7 @@
if
(
i_return
<=
0
)
i_return
=
0
;
NSLog
(
@"%d children for %s"
,
i_return
,
p_item
->
p_input
->
psz_name
);
return
i_return
;
}
...
...
@@ -198,9 +198,7 @@ NSLog( @"%d children for %s", i_return, p_item->p_input->psz_name );
vlc_object_release
(
p_playlist
);
o_value
=
[
o_outline_dict
objectForKey
:[
NSString
stringWithFormat
:
@"%p"
,
p_return
]];
#if 0
NSLog( @"%s", p_return->p_input->psz_name);
#endif
if
(
o_value
==
nil
)
{
o_value
=
[[
NSValue
valueWithPointer
:
p_return
]
retain
];
...
...
@@ -231,11 +229,7 @@ NSLog( @"%d children for %s", i_return, p_item->p_input->psz_name );
}
vlc_object_release
(
p_playlist
);
NSLog
(
@"expandable"
);
if
(
i_return
<=
0
)
return
NO
;
else
return
YES
;
return
(
i_return
>
0
);
}
/* retrieve the string values for the cells */
...
...
@@ -251,7 +245,6 @@ NSLog( @"expandable" );
{
return
(
@"error"
);
}
//NSLog( @"values for %p", p_item );
if
(
[[
o_tc
identifier
]
isEqualToString
:
@"1"
]
)
{
...
...
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