comparison src/dialogs.c @ 3811:f9775881ea94

[gaim-migrate @ 3958] fix a segfault in file->new instant message. (thanks dindinx) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 27 Oct 2002 22:37:21 +0000
parents 9bcb42faccc0
children b983234cb3a3
comparison
equal deleted inserted replaced
3810:085e0226a62e 3811:f9775881ea94
707 entry = gtk_entry_new(); 707 entry = gtk_entry_new();
708 gtk_entry_set_activates_default (GTK_ENTRY(entry), TRUE); 708 gtk_entry_set_activates_default (GTK_ENTRY(entry), TRUE);
709 gtk_box_pack_start(GTK_BOX(hbox), entry, FALSE, FALSE, 0); 709 gtk_box_pack_start(GTK_BOX(hbox), entry, FALSE, FALSE, 0);
710 gtk_label_set_mnemonic_widget(GTK_LABEL(label), GTK_WIDGET(entry)); 710 gtk_label_set_mnemonic_widget(GTK_LABEL(label), GTK_WIDGET(entry));
711 711
712 g_signal_connect(G_OBJECT(imdialog), "response", G_CALLBACK(do_info), entry); 712 g_signal_connect(G_OBJECT(imdialog), "response", G_CALLBACK(do_im), entry);
713 713
714 dialogwindows = g_list_prepend(dialogwindows, imdialog->window); 714 dialogwindows = g_list_prepend(dialogwindows, imdialog->window);
715 } 715 }
716 716
717 gtk_widget_show_all(imdialog); 717 gtk_widget_show_all(imdialog);