comparison src/gtkconv.c @ 11690:872932089400

[gaim-migrate @ 13976] Removing the a_virgin field from GaimGtkImPane. It's no longer used. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 17 Oct 2005 23:04:59 +0000
parents 9c0612901c3e
children d9aab67a9e07
comparison
equal deleted inserted replaced
11689:9c0612901c3e 11690:872932089400
3803 gtkconv->sg = gtk_size_group_new(GTK_SIZE_GROUP_BOTH); 3803 gtkconv->sg = gtk_size_group_new(GTK_SIZE_GROUP_BOTH);
3804 gtkconv->tooltips = gtk_tooltips_new(); 3804 gtkconv->tooltips = gtk_tooltips_new();
3805 3805
3806 if (conv_type == GAIM_CONV_TYPE_IM) { 3806 if (conv_type == GAIM_CONV_TYPE_IM) {
3807 gtkconv->u.im = g_malloc0(sizeof(GaimGtkImPane)); 3807 gtkconv->u.im = g_malloc0(sizeof(GaimGtkImPane));
3808 gtkconv->u.im->a_virgin = TRUE;
3809 3808
3810 pane = setup_im_pane(gtkconv); 3809 pane = setup_im_pane(gtkconv);
3811 } else if (conv_type == GAIM_CONV_TYPE_CHAT) { 3810 } else if (conv_type == GAIM_CONV_TYPE_CHAT) {
3812 gtkconv->u.chat = g_malloc0(sizeof(GaimGtkChatPane)); 3811 gtkconv->u.chat = g_malloc0(sizeof(GaimGtkChatPane));
3813 pane = setup_chat_pane(gtkconv); 3812 pane = setup_chat_pane(gtkconv);
3919 { 3918 {
3920 GaimGtkConversation *gtkconv; 3919 GaimGtkConversation *gtkconv;
3921 3920
3922 gtkconv = GAIM_GTK_CONVERSATION(conv); 3921 gtkconv = GAIM_GTK_CONVERSATION(conv);
3923 gaim_gtkconv_set_active_conversation(conv); 3922 gaim_gtkconv_set_active_conversation(conv);
3924
3925 gtkconv->u.im->a_virgin = FALSE;
3926 3923
3927 gaim_conversation_write(conv, who, message, flags, mtime); 3924 gaim_conversation_write(conv, who, message, flags, mtime);
3928 } 3925 }
3929 3926
3930 static void 3927 static void