# HG changeset patch # User Eric Warmenhoven # Date 992473986 0 # Node ID 8195d67364a4c1e754f069e511e026c946be7dec # Parent dff412b306b8fa89d4ea94eecf674549595e6930 [gaim-migrate @ 2021] ha committer: Tailor Script diff -r dff412b306b8 -r 8195d67364a4 ChangeLog --- a/ChangeLog Wed Jun 13 23:12:20 2001 +0000 +++ b/ChangeLog Wed Jun 13 23:13:06 2001 +0000 @@ -6,6 +6,7 @@ * Updated the German translation (Thanks, Dominik) * Some MSN changes * Some HTML widget changes + * Can specify hosts/ports for Yahoo (thanks Jeremy Brooks) version 0.11.0-pre13 (06/06/2001): * Can view/set chat topic in Jabber (thanks faceprint) diff -r dff412b306b8 -r 8195d67364a4 plugins/icq/gaim_icq.c --- a/plugins/icq/gaim_icq.c Wed Jun 13 23:12:20 2001 +0000 +++ b/plugins/icq/gaim_icq.c Wed Jun 13 23:13:06 2001 +0000 @@ -500,11 +500,20 @@ static void icq_insert_convo(struct gaim_connection *gc, struct conversation *c) { GtkWidget *button; + struct icq_data *id = gc->proto_data; + GSList *l = id->thru_serv; button = gtk_check_button_new_with_label("Send message through server"); gtk_box_pack_start(GTK_BOX(c->lbox), button, FALSE, FALSE, 5); gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(toggle_thru_serv), c); gtk_object_set_user_data(GTK_OBJECT(button), gc); + while (l) { + if (who == (long)l->data) + break; + l = l->next; + } + if (l) + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), TRUE); gtk_widget_show(button); }