Underscore-prefix gtk_tree_data_list_compare_func.

2004-08-11  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtktreedatalist.[hc]:
	* gtk/gtkliststore.c:
	* gtk/gtktreestore.c: Underscore-prefix gtk_tree_data_list_compare_func.

	* gtk/gtk.symbols: Remove gtk_tree_data_list_compare_func.

	* gtk/makegtkalias.pl: No need to include gtktreedatalist.h any more.
This commit is contained in:
Matthias Clasen
2004-08-11 15:08:24 +00:00
committed by Matthias Clasen
parent 024268b051
commit e9c126dbfd
10 changed files with 55 additions and 17 deletions

View File

@ -966,7 +966,7 @@ gtk_tree_store_set_valist (GtkTreeStore *tree_store,
}
}
if (func != gtk_tree_data_list_compare_func)
if (func != _gtk_tree_data_list_compare_func)
maybe_need_sort = TRUE;
while (column != -1)
@ -999,7 +999,7 @@ gtk_tree_store_set_valist (GtkTreeStore *tree_store,
&value,
FALSE) || emit_signal;
if (func == gtk_tree_data_list_compare_func &&
if (func == _gtk_tree_data_list_compare_func &&
column == tree_store->sort_column_id)
maybe_need_sort = TRUE;
@ -2673,7 +2673,7 @@ gtk_tree_store_sort_iter_changed (GtkTreeStore *tree_store,
}
/* If it's the built in function, we don't sort. */
if (func == gtk_tree_data_list_compare_func &&
if (func == _gtk_tree_data_list_compare_func &&
tree_store->sort_column_id != column)
return;