]> git.sesse.net Git - vlc/commitdiff
macosx: remove debug
authorFelix Paul Kühne <fkuehne@videolan.org>
Thu, 16 Feb 2012 20:05:11 +0000 (21:05 +0100)
committerFelix Paul Kühne <fkuehne@videolan.org>
Thu, 16 Feb 2012 20:05:11 +0000 (21:05 +0100)
modules/gui/macosx/playlist.m
modules/gui/macosx_dialog_provider/dialogProvider.m

index b095bd735980542695601aa160f24cab93b149ca..dd9fc0c8c704c444775583181985587ad00d67a9 100644 (file)
 
 - (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];
 
 
     else if( [[o_pasteboard types] containsObject: NSFilenamesPboardType] )
     {
-        NSLog( @"NSFilenamesPboardType" );
         playlist_item_t *p_node = [item pointerValue];
 
         NSArray *o_values = [[o_pasteboard propertyListForType: NSFilenamesPboardType]
index ed6af0ea3b166f85c5e29c604e6a57588c465915..785fe00b1e63c4d5939a12751ae67a9eeff909cb 100644 (file)
@@ -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];