# HG changeset patch # User Luke Schierer # Date 1086485096 0 # Node ID d1b88a570f4d9b54caf00a22c31782c6628add77 # Parent a9f97d5258f8cbd46705879d8741af47ff5b7dff [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 diff -r a9f97d5258f8 -r d1b88a570f4d src/account.h --- 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