comparison src/ui.h @ 8413:f5b0e1a4b0c7

[gaim-migrate @ 9143] Aliases are now shown alongside the screen name in the message queue window. Patch by Kevin Stange. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 09 Mar 2004 02:50:52 +0000
parents a2c5537a814b
children cfb11d9a46fd
comparison
equal deleted inserted replaced
8412:18e94f589649 8413:f5b0e1a4b0c7
64 /* this is used for queuing messages received while away. This is really a UI function 64 /* this is used for queuing messages received while away. This is really a UI function
65 * which is why the struct is here. */ 65 * which is why the struct is here. */
66 66
67 struct queued_message { 67 struct queued_message {
68 char name[80]; 68 char name[80];
69 char alias[80];
69 char *message; 70 char *message;
70 time_t tm; 71 time_t tm;
71 GaimAccount *account; 72 GaimAccount *account;
72 GaimMessageFlags flags; 73 GaimMessageFlags flags;
73 }; 74 };