summaryrefslogtreecommitdiff
path: root/gtk/gtkclist.h
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@nuclecu.unam.mx>1998-03-14 00:07:36 +0000
committerArturo Espinosa <unammx@src.gnome.org>1998-03-14 00:07:36 +0000
commit3ef2c37a835190df03ed393db12c78b50d5c7fd5 (patch)
tree3e83da024a3fc15554ddfcd25bf4ca0f7dc22222 /gtk/gtkclist.h
parent78290be1c07e0fb352f61be598e05f351f3d924c (diff)
downloadgtk+-3ef2c37a835190df03ed393db12c78b50d5c7fd5.tar.gz
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.
Diffstat (limited to 'gtk/gtkclist.h')
-rw-r--r--gtk/gtkclist.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkclist.h b/gtk/gtkclist.h
index 73518468df..fcfd49bcc4 100644
--- a/gtk/gtkclist.h
+++ b/gtk/gtkclist.h
@@ -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,