[vlc-commits] macosx: remove no longer needed msg_dbg

Felix Paul Kühne git at videolan.org
Sun May 22 20:51:50 CEST 2011


vlc/vlc-1.1 | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sun May 22 20:51:42 2011 +0200| [68bca36402669a6c119c088ebc2de11ca534b483] | committer: Felix Paul Kühne

macosx: remove no longer needed msg_dbg

also fixes #4734

> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=68bca36402669a6c119c088ebc2de11ca534b483
---

 modules/gui/macosx/eyetv.m |    8 +-------
 1 files changed, 1 insertions(+), 7 deletions(-)

diff --git a/modules/gui/macosx/eyetv.m b/modules/gui/macosx/eyetv.m
index 8220a71..57de6e2 100644
--- a/modules/gui/macosx/eyetv.m
+++ b/modules/gui/macosx/eyetv.m
@@ -23,9 +23,6 @@
 *****************************************************************************/
 
 #import "eyetv.h"
-/* for apple event interaction [carbon] */
-//#import <Foundation/NSAppleScript>
-/* for various VLC core related calls */
 #import "intf.h"
 
 @implementation VLCEyeTVController
@@ -57,10 +54,7 @@ static VLCEyeTVController *_o_sharedInstance = nil;
 
 - (void)globalNotificationReceived: (NSNotification *)theNotification
 {
-    msg_Dbg( VLCIntf, "notification received in VLC with name %s and object %s",
-             [[theNotification name] UTF8String], [[theNotification object] UTF8String] );
-
-    /* update our info on the used device */
+   /* update our info on the used device */
     if( [[theNotification name] isEqualToString: @"DeviceAdded"] )
         b_deviceConnected = YES;
     if( [[theNotification name] isEqualToString: @"DeviceRemoved"] )



More information about the vlc-commits mailing list