Commit 00e3654a authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - Remove excessive debug.

parent 4d27e757
......@@ -381,7 +381,6 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
void SPrefsPanel::updateAudioOptions( int number)
{
QString value = audioOutput->itemData( number ).toString();
msg_Dbg( p_intf, "I was here, waiting for funman, %s", qtu( value ) );
#ifndef WIN32
oss_options->hide();
......@@ -408,6 +407,7 @@ void SPrefsPanel::apply()
{
msg_Dbg( p_intf, "Trying to save the %i simple panel", number );
/* Generic save for ever panel */
QList<ConfigControl *>::Iterator i;
for( i = controls.begin() ; i != controls.end() ; i++ )
{
......
......@@ -268,15 +268,13 @@ void PrefsDialog::apply()
{
if( small->isChecked() && simple_tree )
{
msg_Dbg( p_intf, "I was here, helping you or not...");
for( int i = 0 ; i< SPrefsMax; i++ ){
if( simple_panels[i] ){ simple_panels[i]->apply();
msg_Dbg( p_intf, "I was here, helping you or not...2");}
if( simple_panels[i] )simple_panels[i]->apply();
}
}
else if( all->isChecked() && advanced_tree )
advanced_tree->applyAll();
msg_Dbg( p_intf, "I was here, helping your");
config_SaveConfigFile( p_intf, NULL );
/* Delete the other panel in order to force its reload after clicking
......
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