| 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 static void schedule_blist_save() |
168 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 } |