changeset 19520:098c04602065

Make a note about purple_prefs_load no longer needing to be called by the UI and update finch accordingly. There doesn't appear to be any negative effects of having the purple_prefs_load called twice.
author Daniel Atallah <daniel.atallah@gmail.com>
date Wed, 29 Aug 2007 03:55:21 +0000
parents e2b7dadac415
children dbed19b9773b 759273051b26
files ChangeLog.API finch/finch.c
diffstat 2 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog.API	Wed Aug 29 01:46:45 2007 +0000
+++ b/ChangeLog.API	Wed Aug 29 03:55:21 2007 +0000
@@ -6,6 +6,9 @@
 		* PURPLE_MESSAGE_INVISIBLE flag, which can be used by
 		  purple_conv_im_send_with_flags to send a message, but not display it
 		  in the conversation
+		Changed:
+		* purple_prefs_load is now called within purple_prefs_init.
+		  The UI no longer needs to call it.
 
 	Pidgin:
 		Added:
--- a/finch/finch.c	Wed Aug 29 01:46:45 2007 +0000
+++ b/finch/finch.c	Wed Aug 29 03:55:21 2007 +0000
@@ -360,9 +360,7 @@
 	purple_set_blist(purple_blist_new());
 	purple_blist_load();
 
-	/* TODO: Move prefs loading into purple_prefs_init() */
-	purple_prefs_load();
-	purple_prefs_update_old();
+	/* TODO: should this be moved into finch_prefs_init() ? */
 	finch_prefs_update_old();
 
 	/* load plugins we had when we quit */