comparison src/blist.c @ 9741:b10d4c6ac7eb

[gaim-migrate @ 10606] (20:26:58) KingAnt: LSchiere: Can you revert it and I'll post some suggestions to the patch in the tracker? committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Thu, 12 Aug 2004 00:26:28 +0000
parents 2bb5e2cd64bd
children 4a8bf81b82ae
comparison
equal deleted inserted replaced
9740:2bb5e2cd64bd 9741:b10d4c6ac7eb
163 gaim_blist_sync(); 163 gaim_blist_sync();
164 blist_save_timer = 0; 164 blist_save_timer = 0;
165 return FALSE; 165 return FALSE;
166 } 166 }
167 167
168 void schedule_blist_save() 168 static void schedule_blist_save()
169 { 169 {
170 if (blist_save_timer != 0) 170 if (blist_save_timer != 0)
171 gaim_timeout_remove(blist_save_timer); 171 gaim_timeout_remove(blist_save_timer);
172 blist_save_timer = gaim_timeout_add(1000, blist_save_callback, NULL); 172 blist_save_timer = gaim_timeout_add(1000, blist_save_callback, NULL);
173 } 173 }