From: RĂ©mi Denis-Courmont Date: Fri, 20 Jun 2008 18:06:01 +0000 (+0300) Subject: qt4: remove dummy error messages X-Git-Tag: 0.9.0-test1~201 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=39cbef1f76d2b8a75f1a3e6d0edb983ce63f29b1;p=vlc qt4: remove dummy error messages --- diff --git a/modules/gui/qt4/main_interface.cpp b/modules/gui/qt4/main_interface.cpp index 33f883d45b..2da99b0f5b 100644 --- a/modules/gui/qt4/main_interface.cpp +++ b/modules/gui/qt4/main_interface.cpp @@ -441,7 +441,6 @@ void MainInterface::handleMainUi( QSettings *settings ) vlc_value_t val; val.p_address = this; var_Set( p_intf, "window_widget", val ); - msg_Err( p_intf, "window_widget = %p", this); } /* Finish the sizing */ diff --git a/modules/gui/qt4/qt4.cpp b/modules/gui/qt4/qt4.cpp index 6dfe0f9078..f4db67a285 100644 --- a/modules/gui/qt4/qt4.cpp +++ b/modules/gui/qt4/qt4.cpp @@ -230,10 +230,7 @@ static int Open( vlc_object_t *p_this ) p_intf->p_sys = (intf_sys_t *)malloc( sizeof( intf_sys_t ) ); if( !p_intf->p_sys ) - { - msg_Err( p_intf, "Out of memory" ); return VLC_ENOMEM; - } memset( p_intf->p_sys, 0, sizeof( intf_sys_t ) ); p_intf->pf_run = Run;