]> git.sesse.net Git - vlc/commitdiff
config: Do not use config_SaveConfigFile( , NULL) or config_SaveConfigFile(, "main" ).
authorDerk-Jan Hartman <hartman@videolan.org>
Mon, 25 Aug 2008 14:34:13 +0000 (16:34 +0200)
committerDerk-Jan Hartman <hartman@videolan.org>
Mon, 25 Aug 2008 14:36:00 +0000 (16:36 +0200)
modules/gui/beos/InterfaceWindow.cpp
modules/gui/macosx/equalizer.m

index 03b304651f32d60cbdb157e14c227b0f50114885..108af799bc15ef2930f745a27cc4e66530ce7231 100644 (file)
@@ -1112,7 +1112,6 @@ InterfaceWindow::_StoreSettings()
 {
     /* Save the volume */
     config_PutInt( p_intf, "volume", p_mediaControl->GetVolume() );
-    config_SaveConfigFile( p_intf, "main" );
 
     /* Save the windows positions */
     if ( fSettings->ReplaceRect( "main frame", Frame() ) != B_OK )
index 78adadd89f881f6ebf56e8b2f5a47a3ab889a5f7..73f9e060dc173aa4c2b78b8c0a070432ae80d535 100644 (file)
@@ -112,9 +112,6 @@ static void ChangeFiltersString( intf_thread_t *p_intf,
     {
         /* save changed to config */
         config_PutPsz( p_object, "audio-filter", psz_string );
-
-        /* save to vlcrc */
-        config_SaveConfigFile( p_object, "main" );
     }
     
     free( psz_string );