comparison src/dialogs.c @ 1840:00aef397a1fe

[gaim-migrate @ 1850] reworked some of the proxy stuff so that it's non-blocking now. next thing to do is to get IRC, MSN, Napster, and Jabber to use the new proxy_connect code. After that, Oscar and Yahoo (maybe Zephyr too? not likely) committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sat, 12 May 2001 01:38:04 +0000
parents b367beee6448
children 93f0629d4099
comparison
equal deleted inserted replaced
1839:109cacf1ff97 1840:00aef397a1fe
1782 gtk_imhtml_append_text(GTK_IMHTML(b->text), "<BR>", 0); 1782 gtk_imhtml_append_text(GTK_IMHTML(b->text), "<BR>", 0);
1783 1783
1784 gtk_adjustment_set_value(gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(sw)), 0); 1784 gtk_adjustment_set_value(gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(sw)), 0);
1785 } 1785 }
1786 1786
1787 void g_show_info(struct aim_user *user, char *url) {
1788 char *url_text = grab_url(user, url);
1789 if (connections)
1790 g_show_info_text(away_subs(url_text,
1791 ((struct gaim_connection *)connections->data)->username));
1792 else
1793 g_show_info_text(url_text);
1794 g_free(url_text);
1795 }
1796
1797 /*------------------------------------------------------------------------*/ 1787 /*------------------------------------------------------------------------*/
1798 /* The dialog for adding to permit/deny */ 1788 /* The dialog for adding to permit/deny */
1799 /*------------------------------------------------------------------------*/ 1789 /*------------------------------------------------------------------------*/
1800 1790
1801 1791