Commit 8501e4a2 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Remove debug.

parent f69e62d2
......@@ -624,7 +624,6 @@ void ExtV4l2::Refresh( void )
}
if( p_obj )
{
msg_Dbg( p_intf, "Found v4l2 instance" );
vlc_value_t val, text, name;
int i_ret = var_Change( p_obj, "controls", VLC_VAR_GETCHOICES,
&val, &text );
......@@ -748,7 +747,6 @@ void ExtV4l2::Refresh( void )
msg_Dbg( p_intf, "Couldn't find v4l2 instance" );
ui.help->show();
}
}
void ExtV4l2::ValueChange( bool value )
......
......@@ -206,7 +206,6 @@ void BackgroundWidget::updateArt( QString url )
else
{
label->setPixmap( QPixmap( url ) );
msg_Dbg( p_intf, "changing input b_need_update done ");
}
}
......
......@@ -1023,7 +1023,6 @@ void CaptureOpenPanel::updateButtons()
/* Get the current Device Number */
int i_devicetype = ui.deviceCombo->itemData(
ui.deviceCombo->currentIndex() ).toInt();
msg_Dbg( p_intf, "Capture Type: %i", i_devicetype );
switch( i_devicetype )
{
#ifdef WIN32
......
......@@ -162,7 +162,6 @@ VLMDialog::VLMDialog( QWidget *parent, intf_thread_t *_p_intf ) : QVLCDialog( pa
VLMDialog::~VLMDialog()
{
msg_Dbg( p_intf, "Destroying VLM Dialog" );
delete vlmWrapper;
/* FIXME :you have to destroy vlm here to close
......@@ -204,7 +203,7 @@ void VLMDialog::addVLMItem()
QString name = ui.nameLedit->text();
if( name.isEmpty() || !isNameGenuine( name ) )
{
msg_Dbg( p_intf, "VLM Name is empty or already exists, I can't do it" );
msg_Err( p_intf, "VLM Name is empty or already exists, I can't do it" );
return;
}
......@@ -351,7 +350,7 @@ bool VLMDialog::importVLMConf()
}
else
{
msg_Dbg( p_intf, "Failed to import vlm configuration file : %s", qtu( command ) );
msg_Warn( p_intf, "Failed to import vlm configuration file : %s", qtu( command ) );
return false;
}
return true;
......@@ -405,7 +404,6 @@ void VLMDialog::startModifyVLMItem( VLMAWidget *vlmObj )
currentIndex = vlmItems.indexOf( vlmObj );
if( currentIndex < 0 ) return;
msg_Dbg( p_intf, "Type: %i", vlmObj->type );
ui.vlmListItem->setCurrentRow( currentIndex );
ui.nameLedit->setText( vlmObj->name );
ui.inputLedit->setText( vlmObj->input );
......
......@@ -362,6 +362,7 @@ static void Init( intf_thread_t *p_intf )
: p_intf->p_libvlc->psz_homedir;
#ifdef UPDATE_CHECK
/* Checking for VLC updates */
if( config_GetInt( p_intf, "qt-updates-notif" ) )
{
int interval = config_GetInt( p_intf, "qt-updates-days" );
......@@ -369,7 +370,6 @@ static void Init( intf_thread_t *p_intf )
if( QDate::currentDate() >
settings.value( "updatedate" ).toDate().addDays( interval ) )
{
msg_Dbg( p_intf, "Someone said I need to check updates" );
/* The constructor of the update Dialog will do the 1st request */
UpdateDialog::getInstance( p_intf );
settings.setValue( "updatedate", QDate::currentDate() );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment