src/conversation.c

changeset 7562
7cbd89f3cef1
parent 7561
fd6a81f1594e
child 7602
1b9f55e57af3
equal deleted inserted replaced
7561:fd6a81f1594e 7562:7cbd89f3cef1
817 conv->u.im->conv = conv; 817 conv->u.im->conv = conv;
818 818
819 ims = g_list_append(ims, conv); 819 ims = g_list_append(ims, conv);
820 820
821 gaim_conversation_set_logging(conv, 821 gaim_conversation_set_logging(conv,
822 gaim_prefs_get_bool("/gaim/gtk/logging/log_ims")); 822 gaim_prefs_get_bool("/core/logging/log_ims"));
823 } 823 }
824 else if (type == GAIM_CONV_CHAT) 824 else if (type == GAIM_CONV_CHAT)
825 { 825 {
826 conv->u.chat = g_new0(GaimConvChat, 1); 826 conv->u.chat = g_new0(GaimConvChat, 1);
827 conv->u.chat->conv = conv; 827 conv->u.chat->conv = conv;
828 828
829 chats = g_list_append(chats, conv); 829 chats = g_list_append(chats, conv);
830 830
831 gaim_conversation_set_logging(conv, 831 gaim_conversation_set_logging(conv,
832 gaim_prefs_get_bool("/gaim/gtk/logging/log_chats")); 832 gaim_prefs_get_bool("/core/logging/log_chats"));
833 } 833 }
834 834
835 conversations = g_list_append(conversations, conv); 835 conversations = g_list_append(conversations, conv);
836 836
837 /* Auto-set the title. */ 837 /* Auto-set the title. */

mercurial