X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fqt4%2Fdialogs%2Fpreferences.cpp;h=89864d7a1649fe137020fff8a4592b07039ae227;hb=a622a74a1fe9cd481474960ff8435335d56a4067;hp=06b2f5cd82f83fe17c6a8a55ac0305a440899ae2;hpb=db8fce291e1646ecae93132cc9f7338c95f01b73;p=vlc diff --git a/modules/gui/qt4/dialogs/preferences.cpp b/modules/gui/qt4/dialogs/preferences.cpp index 06b2f5cd82..89864d7a16 100644 --- a/modules/gui/qt4/dialogs/preferences.cpp +++ b/modules/gui/qt4/dialogs/preferences.cpp @@ -39,8 +39,6 @@ #include #include -PrefsDialog *PrefsDialog::instance = NULL; - PrefsDialog::PrefsDialog( QWidget *parent, intf_thread_t *_p_intf ) : QVLCDialog( parent, _p_intf ) { @@ -294,56 +292,13 @@ void PrefsDialog::save() /* Save to file */ config_SaveConfigFile( p_intf, NULL ); - - destroyPanels(); - - hide(); + accept(); } -void PrefsDialog::destroyPanels() -{ - msg_Dbg( p_intf, "Destroying the Panels" ); - /* Delete the other panel in order to force its reload after clicking - on apply. In fact, if we don't do that, the preferences from the other - panels won't be accurate, so we would have to recreate the whole dialog, - and we don't want that.*/ - if( small->isChecked() && advanced_panel ) - { - /* Deleting only the active panel from the advanced config doesn't work - because the data records of PrefsItemData contains still a - reference to it only cleanAll() is sure to remove all Panels! */ - advanced_tree->cleanAll(); - advanced_panel = NULL; - } - if( all->isChecked() && current_simple_panel ) - { - for( int i = 0 ; i< SPrefsMax; i++ ) - { - if( simple_panels[i] ) - { - delete simple_panels[i]; - simple_panels[i] = NULL; - } - } - current_simple_panel = NULL; - } -} - - /* Clean the preferences, dunno if it does something really */ void PrefsDialog::cancel() { - if( small->isChecked() && simple_tree ) - { - for( int i = 0 ; i< SPrefsMax; i++ ) - if( simple_panels[i] ) simple_panels[i]->clean(); - } - else if( all->isChecked() && advanced_tree ) - { - advanced_tree->cleanAll(); - advanced_panel = NULL; - } - hide(); + reject(); } /* Reset all the preferences, when you click the button */ @@ -362,8 +317,6 @@ void PrefsDialog::reset() config_SaveConfigFile( p_intf, NULL ); getSettings()->clear(); - close(); - instance = NULL; - PrefsDialog::getInstance( p_intf )->show(); + accept(); } }