comparison src/prefs.c @ 8287:ef881489396e

[gaim-migrate @ 9011] Another patch from Scott Lamb to change g_source_remove calls to gaim_timeout_remove. It also implements gaim_timeout_remove. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 18 Feb 2004 07:43:21 +0000
parents f24172f53650
children 1a016d979ce0
comparison
equal deleted inserted replaced
8286:89d9d004e3f3 8287:ef881489396e
133 133
134 void 134 void
135 gaim_prefs_uninit() 135 gaim_prefs_uninit()
136 { 136 {
137 if (prefs_save_timer != 0) { 137 if (prefs_save_timer != 0) {
138 g_source_remove(prefs_save_timer); 138 gaim_timeout_remove(prefs_save_timer);
139 prefs_save_timer = 0; 139 prefs_save_timer = 0;
140 gaim_prefs_sync(); 140 gaim_prefs_sync();
141 } 141 }
142 } 142 }
143 143