Mercurial > pidgin
diff src/gtkconv.c @ 9730:c9ac1976ef01
[gaim-migrate @ 10591]
I shuffled lots of stuff around again.
See plugins/ChangeLog.API for the list of renamed functions.
I'm trying to clean up gtkdialogs.c/.h, so I moved the away stuff
into away.c/.h
I also reduced the minimum buddy list height from 200 pixels to
100 pixels. I just realized that that's also the default height
used when you don't have a prefs.xml, which is bad. I think I'm
going to set the default height to around 300 pixels.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Mon, 09 Aug 2004 03:49:46 +0000 |
| parents | 8be2c406a1f1 |
| children | a2fd9abea23a |
line wrap: on
line diff
--- a/src/gtkconv.c Sun Aug 08 19:01:42 2004 +0000 +++ b/src/gtkconv.c Mon Aug 09 03:49:46 2004 +0000 @@ -525,7 +525,7 @@ b = gaim_find_buddy(account, name); if (b != NULL) - show_confirm_del(b); + gaim_gtkdialogs_remove_buddy(b); else if (account != NULL && gaim_account_is_connected(account)) gaim_blist_request_add_buddy(account, (char *)name, NULL, NULL); } else if (gaim_conversation_get_type(conv) == GAIM_CONV_CHAT) { @@ -533,7 +533,7 @@ c = gaim_blist_find_chat(account, name); if (c != NULL) - show_confirm_del_blist_chat(c); + gaim_gtkdialogs_remove_chat(c); else if (account != NULL && gaim_account_is_connected(account)) gaim_blist_request_add_chat(account, NULL, NULL); } @@ -998,13 +998,13 @@ b = gaim_find_buddy(account, name); if (b != NULL) - alias_dialog_bud(b); + gaim_gtkdialogs_alias_buddy(b); } else if (gaim_conversation_get_type(conv) == GAIM_CONV_CHAT) { GaimChat *c; c = gaim_blist_find_chat(account, name); if (c != NULL) - alias_dialog_blist_chat(c); + gaim_gtkdialogs_alias_chat(c); } } @@ -1302,7 +1302,7 @@ b = gaim_find_buddy(account, name); if (b != NULL) - show_confirm_del(b); + gaim_gtkdialogs_remove_buddy(b); else if (account != NULL && gaim_account_is_connected(account)) gaim_blist_request_add_buddy(account, name, NULL, NULL);
