diff src/privacy.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 a4ae4fb7f939
line wrap: on
line diff
--- a/src/privacy.c	Wed Aug 11 23:52:48 2004 +0000
+++ b/src/privacy.c	Thu Aug 12 00:26:28 2004 +0000
@@ -26,8 +26,6 @@
 #include "server.h"
 #include "util.h"
 
-extern void schedule_blist_save(void);
-
 static GaimPrivacyUiOps *privacy_ops = NULL;
 
 gboolean
@@ -60,7 +58,6 @@
 	if (privacy_ops != NULL && privacy_ops->permit_added != NULL)
 		privacy_ops->permit_added(account, who);
 
-	schedule_blist_save();
 	return TRUE;
 }
 
@@ -95,7 +92,6 @@
 	if (privacy_ops != NULL && privacy_ops->permit_removed != NULL)
 		privacy_ops->permit_removed(account, who);
 
-	schedule_blist_save();
 	return TRUE;
 }
 
@@ -129,7 +125,6 @@
 	if (privacy_ops != NULL && privacy_ops->deny_added != NULL)
 		privacy_ops->deny_added(account, who);
 
-	schedule_blist_save();
 	return TRUE;
 }
 
@@ -164,7 +159,6 @@
 	if (privacy_ops != NULL && privacy_ops->deny_removed != NULL)
 		privacy_ops->deny_removed(account, who);
 
-	schedule_blist_save();
 	return TRUE;
 }