comparison src/audacious/signals.c @ 4412:180996fcf12a

bmp_config_* -> aud_config_*
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 31 Mar 2008 06:36:41 +0300
parents 51b7809c2d87
children 6456eadfe0ca
comparison
equal deleted inserted replaced
4411:628926f505f8 4412:180996fcf12a
75 75
76 g_printerr(_("\nBugs can be reported at http://bugs-meta.atheme.org against the Audacious product.\n")); 76 g_printerr(_("\nBugs can be reported at http://bugs-meta.atheme.org against the Audacious product.\n"));
77 77
78 g_critical("Received SIGSEGV -- Audacious has crashed."); 78 g_critical("Received SIGSEGV -- Audacious has crashed.");
79 79
80 bmp_config_save(); 80 aud_config_save();
81 abort(); 81 abort();
82 } 82 }
83 83
84 static void * 84 static void *
85 signal_process_signals (void *data) 85 signal_process_signals (void *data)
258 258
259 static void 259 static void
260 signal_session_save_cb(EggSMClient *client, const char *state_dir, gpointer user_data) 260 signal_session_save_cb(EggSMClient *client, const char *state_dir, gpointer user_data)
261 { 261 {
262 g_print("Session save requested. Saving state.\n"); 262 g_print("Session save requested. Saving state.\n");
263 bmp_config_save(); 263 aud_config_save();
264 } 264 }
265 265
266 void 266 void
267 signal_handlers_init(void) 267 signal_handlers_init(void)
268 { 268 {