diff src/console/Audacious_Config.cxx @ 2523:769e17da93dd

Replaced s/ConfigDb/mcs_handle_t/g, as per changes in the core.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 09 Apr 2008 15:48:36 +0300
parents ed6c81bd9016
children 3134a0987162
line wrap: on
line diff
--- a/src/console/Audacious_Config.cxx	Wed Apr 09 13:31:10 2008 +0300
+++ b/src/console/Audacious_Config.cxx	Wed Apr 09 15:48:36 2008 +0300
@@ -20,7 +20,7 @@
 
 void console_cfg_load( void )
 {
-    ConfigDb *db = aud_cfg_db_open();
+    mcs_handle_t *db = aud_cfg_db_open();
     aud_cfg_db_get_int(db, "console", "loop_length", &audcfg.loop_length);
     aud_cfg_db_get_bool(db, "console", "resample", &audcfg.resample);
     aud_cfg_db_get_int(db, "console", "resample_rate", &audcfg.resample_rate);
@@ -35,7 +35,7 @@
 
 void console_cfg_save( void )
 {
-    ConfigDb *db = aud_cfg_db_open();
+    mcs_handle_t *db = aud_cfg_db_open();
     aud_cfg_db_set_int(db, "console", "loop_length", audcfg.loop_length);
     aud_cfg_db_set_bool(db, "console", "resample", audcfg.resample);
     aud_cfg_db_set_int(db, "console", "resample_rate", audcfg.resample_rate);