changeset 9187:d1b88a570f4d

[gaim-migrate @ 9982] " All the other important Gaim objects get a ui_data field. struct _GaimAccount doesn't declare one... but there's no reason not to let the ui have use of one if it wants one (and plenty of good reasons for a ui to want one). One line patch to add: void *ui_data; /**< The UI can put data here.*/ to the _GaimAccount struct." --Evan Schoenberg committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 06 Jun 2004 01:24:56 +0000
parents a9f97d5258f8
children b6e3dcb23de0
files src/account.h
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/account.h	Sun Jun 06 01:20:25 2004 +0000
+++ b/src/account.h	Sun Jun 06 01:24:56 2004 +0000
@@ -72,6 +72,8 @@
 	GSList *deny;               /**< Deny list.                           */
 	int perm_deny;              /**< The permit/deny setting.             */
 	GaimLog *system_log;        /**< The system log                       */
+	
+	void *ui_data;             /**< The UI can put data here.			  */
 };
 
 #ifdef __cplusplus