comparison src/prpl.c @ 3493:4b204c262376

[gaim-migrate @ 3553] Rob committed some bug fixes to gtk1-stable, but not to HEAD. now his computer is acting up again, so i'm making the corresponding commits to HEAD. this should help with yahoo i18n, segfaults on jabber, a problem in gaimrc, and word wrapping on new mail notification. Modified Files: ChangeLog src/gaim.h src/gaimrc.c src/prpl.c src/protocols/msn/msn.c src/protocols/yahoo/yahoo.c ---------------------------------------------------------------------- committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 10 Sep 2002 15:31:34 +0000
parents cfbdfe334975
children bdd0bebd2d04
comparison
equal deleted inserted replaced
3492:3b9b5e06c2e0 3493:4b204c262376
435 gtk_container_add(GTK_CONTAINER(mn->email_win), vbox); 435 gtk_container_add(GTK_CONTAINER(mn->email_win), vbox);
436 gtk_widget_show(vbox); 436 gtk_widget_show(vbox);
437 437
438 mn->email_label = gtk_label_new(buf); 438 mn->email_label = gtk_label_new(buf);
439 gtk_label_set_text(GTK_LABEL(mn->email_label), buf); 439 gtk_label_set_text(GTK_LABEL(mn->email_label), buf);
440 gtk_box_pack_start(GTK_BOX(vbox), mn->email_label, 0, 0, 5); 440 gtk_label_set_line_wrap(GTK_LABEL(mn->email_label), TRUE);
441 gtk_box_pack_start(GTK_BOX(vbox), mn->email_label, FALSE, TRUE, 5);
441 gtk_widget_show(mn->email_label); 442 gtk_widget_show(mn->email_label);
442 443
443 hbox = gtk_hbox_new(FALSE, 5); 444 hbox = gtk_hbox_new(FALSE, 5);
444 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); 445 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
445 gtk_widget_show(hbox); 446 gtk_widget_show(hbox);