Now we return a GtkVisibility value, instead of a simple boolean. Also,

1998-03-13  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* gtk/gtkclist.c (gtk_clist_row_is_visible): Now we return a
	GtkVisibility value, instead of a simple boolean.  Also, changed
	all the functions that expected a boolean value to use
	"!= GTK_VISIBILITY_NONE".

	* gtk/gtkclist.h: Changed prototype for gtk_clist_row_is_visible().

	* gtk/gtkenums.h (enum): Added GtkVisibility enum.
This commit is contained in:
Federico Mena Quintero
1998-03-14 00:07:36 +00:00
committed by Arturo Espinosa
parent 78290be1c0
commit 3ef2c37a83
10 changed files with 120 additions and 22 deletions

View File

@ -352,9 +352,9 @@ void gtk_clist_moveto (GtkCList * clist,
gfloat row_align,
gfloat col_align);
/* returns true if the row is visible */
gint gtk_clist_row_is_visible (GtkCList * clist,
gint row);
/* returns whether the row is visible */
GtkVisibility gtk_clist_row_is_visible (GtkCList * clist,
gint row);
/* returns the cell type */
GtkCellType gtk_clist_get_cell_type (GtkCList * clist,