comparison src/dialogs.c @ 2906:538c58b43eff

[gaim-migrate @ 2919] save save me from this wandered around the town all the thousand things i might miss and you think we'll suffer much think we'll close our eyes just to see the light pass us by with tomorrow coming hope that i don't let you down again said i'm so glad to be here does it mean a thing if only i could breathe what you breathe if only i could see what you see sit we'll take our time watching the flowers grow all the friends we've known say goodbye and you did you suffer much did you close your eyes just to see the night rush on by gathered all around you hope that we don't let you down again i said i'm so glad to be here does it mean a thing if only i could breathe what you breathe if only i could see what you see i said i'm so glad to be here does it mean a thing if only i could breathe what you breathe if only i could see what you see if only i could just believe a thing --Moist, "Breathe" (as transcribed by http://www.veddma.com/veddma/moist.htm) Patches from: Ari Pollak Ben Miller Mark Doliner Sean Egan Vincas Ciziunas Thanks everyone. Somewhere in the middle of all of this it started to get really tedious and annoying. I think it's getting close to the point where I quit. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 21 Dec 2001 10:23:04 +0000
parents b1e300a85678
children b68c648618a3
comparison
equal deleted inserted replaced
2905:a090e98dbbb6 2906:538c58b43eff
1850 1850
1851 va_start(ap, info); 1851 va_start(ap, info);
1852 while ((more_info = va_arg(ap, char *)) != NULL) 1852 while ((more_info = va_arg(ap, char *)) != NULL)
1853 gtk_imhtml_append_text(GTK_IMHTML(b->text), more_info, -1, options); 1853 gtk_imhtml_append_text(GTK_IMHTML(b->text), more_info, -1, options);
1854 va_end(ap); 1854 va_end(ap);
1855
1856 gtk_imhtml_append_text(GTK_IMHTML(b->text), "<BR>", -1, 0);
1857 1855
1858 if (away) 1856 if (away)
1859 info_dlgs = g_slist_remove(info_dlgs, b); 1857 info_dlgs = g_slist_remove(info_dlgs, b);
1860 else 1858 else
1861 serv_get_away(gc, who); 1859 serv_get_away(gc, who);
3767 gtk_container_add(GTK_CONTAINER(frame), sw); 3765 gtk_container_add(GTK_CONTAINER(frame), sw);
3768 gtk_box_pack_start(GTK_BOX(hbox), frame, TRUE, TRUE, 0); 3766 gtk_box_pack_start(GTK_BOX(hbox), frame, TRUE, TRUE, 0);
3769 3767
3770 gtk_signal_connect(GTK_OBJECT(layout), "url_clicked", GTK_SIGNAL_FUNC(open_url), NULL); 3768 gtk_signal_connect(GTK_OBJECT(layout), "url_clicked", GTK_SIGNAL_FUNC(open_url), NULL);
3771 gtk_container_add(GTK_CONTAINER(sw), layout); 3769 gtk_container_add(GTK_CONTAINER(sw), layout);
3770 GTK_LAYOUT(layout)->hadjustment->step_increment = 10.0;
3771 GTK_LAYOUT(layout)->vadjustment->step_increment = 10.0;
3772 gaim_setup_imhtml(layout); 3772 gaim_setup_imhtml(layout);
3773 3773
3774 gtk_box_pack_start(GTK_BOX(box), bbox, FALSE, FALSE, 0); 3774 gtk_box_pack_start(GTK_BOX(box), bbox, FALSE, FALSE, 0);
3775 gtk_widget_set_sensitive(bbox, FALSE); 3775 gtk_widget_set_sensitive(bbox, FALSE);
3776 3776