diff src/privacy.c @ 10704:a4ae4fb7f939

[gaim-migrate @ 12288] Make the blist.xml saving schedule function public and call it whenever privacy settings are changed. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 20 Mar 2005 01:42:53 +0000
parents b10d4c6ac7eb
children f03dce7ea408
line wrap: on
line diff
--- a/src/privacy.c	Sun Mar 20 01:23:06 2005 +0000
+++ b/src/privacy.c	Sun Mar 20 01:42:53 2005 +0000
@@ -58,6 +58,8 @@
 	if (privacy_ops != NULL && privacy_ops->permit_added != NULL)
 		privacy_ops->permit_added(account, who);
 
+	gaim_blist_schedule_save();
+
 	return TRUE;
 }
 
@@ -92,6 +94,8 @@
 	if (privacy_ops != NULL && privacy_ops->permit_removed != NULL)
 		privacy_ops->permit_removed(account, who);
 
+	gaim_blist_schedule_save();
+
 	return TRUE;
 }
 
@@ -125,6 +129,8 @@
 	if (privacy_ops != NULL && privacy_ops->deny_added != NULL)
 		privacy_ops->deny_added(account, who);
 
+	gaim_blist_schedule_save();
+
 	return TRUE;
 }
 
@@ -159,6 +165,8 @@
 	if (privacy_ops != NULL && privacy_ops->deny_removed != NULL)
 		privacy_ops->deny_removed(account, who);
 
+	gaim_blist_schedule_save();
+
 	return TRUE;
 }