[vlc-devel] commit: macosx: remove a NSLog message. (Derk-Jan Hartman )
git version control
git at videolan.org
Sat May 30 00:32:49 CEST 2009
vlc | branch: master | Derk-Jan Hartman <hartman at videolan.org> | Fri May 29 13:15:34 2009 +0200| [262f762dfc7d0fe9e890fa932e1af681a6b85b3a] | committer: Jean-Baptiste Kempf
macosx: remove a NSLog message.
(cherry picked from commit 5cbb5848e90522556a838ccf04646727fed10cc9)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=262f762dfc7d0fe9e890fa932e1af681a6b85b3a
---
modules/gui/macosx/controls.m | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/macosx/controls.m b/modules/gui/macosx/controls.m
index 774b099..95a8dc4 100644
--- a/modules/gui/macosx/controls.m
+++ b/modules/gui/macosx/controls.m
@@ -589,8 +589,8 @@
if( !p_input ) return;
c = [[openPanel filenames] count];
- NSLog( @"count: %i", c );
- for (int i = 0; [[openPanel filenames] count] > i ; i++)
+
+ for (int i = 0; i < [[openPanel filenames] count] ; i++)
{
msg_Dbg( VLCIntf, "loading subs from %s", [[[openPanel filenames] objectAtIndex: i] UTF8String] );
if( input_AddSubtitle( p_input, [[[openPanel filenames] objectAtIndex: i] UTF8String], TRUE ) )
More information about the vlc-devel
mailing list