| 806 |
806 |
| 807 /** schedules the buddy list to be saved to the server */ |
807 /** schedules the buddy list to be saved to the server */ |
| 808 static void blist_schedule(struct mwPurplePluginData *pd) { |
808 static void blist_schedule(struct mwPurplePluginData *pd) { |
| 809 if(pd->save_event) return; |
809 if(pd->save_event) return; |
| 810 |
810 |
| 811 pd->save_event = purple_timeout_add(BLIST_SAVE_SECONDS * 1000, |
811 pd->save_event = purple_timeout_add_seconds(BLIST_SAVE_SECONDS, |
| 812 blist_save_cb, pd); |
812 blist_save_cb, pd); |
| 813 } |
813 } |
| 814 |
814 |
| 815 |
815 |
| 816 static gboolean buddy_is_external(PurpleBuddy *b) { |
816 static gboolean buddy_is_external(PurpleBuddy *b) { |