Mercurial > pidgin
diff src/gtkpounce.c @ 5563:9eb5b13fd412
[gaim-migrate @ 5965]
Just a taste of what's coming.
Standard "This won't compile" thing. Plugin authors, you're going to hate
me, but that's okay, because I have friends too!
It's really late. My brain resembles that of fish swimming in jello pudding
with neon lights flying around chanting musicals. I'm not on drugs. I'm
just that tired.
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Fri, 30 May 2003 09:38:29 +0000 |
| parents | 2c4c975620f0 |
| children | 86456ec3ca25 |
line wrap: on
line diff
--- a/src/gtkpounce.c Fri May 30 04:13:58 2003 +0000 +++ b/src/gtkpounce.c Fri May 30 09:38:29 2003 +0000 @@ -33,7 +33,7 @@ { /* Pounce data */ struct gaim_pounce *pounce; - struct gaim_account *account; + GaimAccount *account; /* The window */ GtkWidget *window; @@ -276,7 +276,7 @@ static GtkWidget * pounce_user_menu(struct gaim_gtkpounce_dialog *dialog) { - struct gaim_account *account; + GaimAccount *account; GaimPlugin *prpl; GtkWidget *opt_menu; GtkWidget *menu; @@ -289,7 +289,7 @@ menu = gtk_menu_new(); for (l = gaim_accounts, count = 0; l != NULL; l = l->next, count++) { - account = (struct gaim_account *)l->data; + account = (GaimAccount *)l->data; prpl = gaim_find_prpl(account->protocol); @@ -322,7 +322,7 @@ pounce_cb(struct gaim_pounce *pounce, GaimPounceEvent events, void *data) { struct gaim_conversation *conv; - struct gaim_account *account; + GaimAccount *account; struct gaim_gtkpounce_data *pounce_data; const char *pouncee; @@ -429,7 +429,7 @@ } struct gaim_pounce * -gaim_gtkpounce_new(struct gaim_account *pouncer, const char *pouncee, +gaim_gtkpounce_new(GaimAccount *pouncer, const char *pouncee, GaimPounceEvent events, GaimGtkPounceAction actions, const char *message, const char *command, const char *sound, gboolean save)
