[vlc-commits] macosx: remove debug
Felix Paul Kühne
git at videolan.org
Thu Feb 16 21:09:01 CET 2012
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Thu Feb 16 21:05:11 2012 +0100| [b041630bf508e5ea800e975e6fdbe35a6b953545] | committer: Felix Paul Kühne
macosx: remove debug
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b041630bf508e5ea800e975e6fdbe35a6b953545
---
modules/gui/macosx/playlist.m | 2 --
.../gui/macosx_dialog_provider/dialogProvider.m | 4 ----
2 files changed, 0 insertions(+), 6 deletions(-)
diff --git a/modules/gui/macosx/playlist.m b/modules/gui/macosx/playlist.m
index b095bd7..dd9fc0c 100644
--- a/modules/gui/macosx/playlist.m
+++ b/modules/gui/macosx/playlist.m
@@ -1542,7 +1542,6 @@
- (BOOL)outlineView:(NSOutlineView *)outlineView acceptDrop:(id <NSDraggingInfo>)info item:(id)item childIndex:(NSInteger)index
{
- NSLog( @"- (BOOL)outlineView:(NSOutlineView *)outlineView acceptDrop:(id <NSDraggingInfo>)info item:(id)item childIndex:(NSInteger)index" );
playlist_t * p_playlist = pl_Get( VLCIntf );
NSPasteboard *o_pasteboard = [info draggingPasteboard];
@@ -1630,7 +1629,6 @@
else if( [[o_pasteboard types] containsObject: NSFilenamesPboardType] )
{
- NSLog( @"NSFilenamesPboardType" );
playlist_item_t *p_node = [item pointerValue];
NSArray *o_values = [[o_pasteboard propertyListForType: NSFilenamesPboardType]
diff --git a/modules/gui/macosx_dialog_provider/dialogProvider.m b/modules/gui/macosx_dialog_provider/dialogProvider.m
index ed6af0e..785fe00 100644
--- a/modules/gui/macosx_dialog_provider/dialogProvider.m
+++ b/modules/gui/macosx_dialog_provider/dialogProvider.m
@@ -463,7 +463,6 @@ bool checkProgressPanel (void *priv)
#pragma mark Last.FM support
- (void)globalNotificationReceived: (NSNotification *)theNotification
{
- NSLog(@"globalNotificationReceived");
NSDictionary *userData = [theNotification userInfo];
BOOL lastFMEnabled = [[userData objectForKey:@"enabled"] intValue];
NSString *lastFMUsername = [userData objectForKey:@"username"];
@@ -491,7 +490,6 @@ bool checkProgressPanel (void *priv)
VLCDialogButton *button = sender;
extension_widget_t *widget = [button widget];
- NSLog(@"(triggerClick)");
vlc_mutex_lock(&widget->p_dialog->lock);
extension_WidgetClicked(widget->p_dialog, widget);
vlc_mutex_unlock(&widget->p_dialog->lock);
@@ -677,7 +675,6 @@ static void updateControlFromWidget(NSView *control, extension_widget_t *widget,
// NSString *string = [NSString stringWithUTF8String:widget->psz_text];
// NSAttributedString *attrString = [[NSAttributedString alloc] initWithHTML:[string dataUsingEncoding:NSISOLatin1StringEncoding] documentAttributes:NULL];
// [[textView textStorage] setAttributedString:[[NSAttributedString alloc] initWithString:@"Hello"]];
-// NSLog(@"%@", string);
// [textView setNeedsDisplay:YES];
// [textView scrollRangeToVisible:NSMakeRange(0, 0)];
// [attrString release];
@@ -762,7 +759,6 @@ static void updateControlFromWidget(NSView *control, extension_widget_t *widget,
NSImageView *imageView = (NSImageView *)control;
NSString *string = widget->psz_text ? [NSString stringWithUTF8String:widget->psz_text] : nil;
NSImage *image = nil;
- NSLog(@"Setting image to %@", string);
if (string)
image = [[NSImage alloc] initWithContentsOfURL:[NSURL fileURLWithPath:string]];
[imageView setImage:image];
More information about the vlc-commits
mailing list