comparison gtk/gtkconv.c @ 14228:c18bdf510325

[gaim-migrate @ 16910] Fix autogen.sh to run glib-gettextize Fix CFLAGS when gstreamer is not installed Make things work with gtk < 2.6, in part by borrowing some code from gdk Don't link gntgaim with gstreamer, xss or sm committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sun, 20 Aug 2006 17:49:58 +0000
parents 009db0b357b5
children af0d0e23b937
comparison
equal deleted inserted replaced
14227:f306918687a4 14228:c18bdf510325
4982 num_users); 4982 num_users);
4983 4983
4984 gtk_label_set_text(GTK_LABEL(gtkchat->count), tmp); 4984 gtk_label_set_text(GTK_LABEL(gtkchat->count), tmp);
4985 4985
4986 ls = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(gtkchat->list))); 4986 ls = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(gtkchat->list)));
4987 4987
4988 #if GTK_CHECK_VERSION(2,6,0)
4988 gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(ls), GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID, 4989 gtk_tree_sortable_set_sort_column_id(GTK_TREE_SORTABLE(ls), GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID,
4989 GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID); 4990 GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID);
4991 #endif
4990 4992
4991 l = cbuddies; 4993 l = cbuddies;
4992 while (l != NULL) { 4994 while (l != NULL) {
4993 add_chat_buddy_common(conv, (GaimConvChatBuddy *)l->data, NULL); 4995 add_chat_buddy_common(conv, (GaimConvChatBuddy *)l->data, NULL);
4994 l = l->next; 4996 l = l->next;