add missing '}' that got munched by #endif.

Mon Apr 23 18:57:03 2001  Jonathan Blandford  <jrb@redhat.com>

	* gtk/gtksocket.c (gtk_socket_filter_func): add missing '}' that
	got munched by #endif.

	* gtk/Makefile.am (gtk_plug_c_sources): add missing '\'

	* gtk/gtktreeview.c: Refactored code to clean up a number of
	events.

	* gtk/gtktreemodel.c (gtk_tree_path_compare): Switched return
	values to make consistent with other functions.  Spotted by Jeff
	Franks <jcf@tpg.com.au>.

	* gtk/gtktreeview.h (struct _GtkTreeViewClass): Fixes to signal
	declaration spotted by Jeff Franks <jcf@tpg.com.au>.
This commit is contained in:
Jonathan Blandford
2001-04-23 23:03:53 +00:00
committed by Jonathan Blandford
parent 7954668292
commit 60051ff670
18 changed files with 506 additions and 158 deletions

View File

@ -764,7 +764,7 @@ gtk_tree_selection_real_select_range (GtkTreeSelection *selection,
switch (gtk_tree_path_compare (start_path, end_path))
{
case -1:
case 1:
_gtk_tree_view_find_node (selection->tree_view,
end_path,
&start_tree,
@ -782,7 +782,7 @@ gtk_tree_selection_real_select_range (GtkTreeSelection *selection,
end_tree = start_tree;
end_node = start_node;
break;
case 1:
case -1:
_gtk_tree_view_find_node (selection->tree_view,
start_path,
&start_tree,