Modified Files: gtkclist.c gtkclist.h gtkctree.c gtkctree.h gtknotebook.c

Modified Files:
 	gtkclist.c gtkclist.h gtkctree.c gtkctree.h gtknotebook.c
 	gtknotebook.h gtkrc.c gtkrc.h
 add const in some useful places
This commit is contained in:
jaycox
1998-11-23 13:53:25 +00:00
parent 72bd1c5859
commit 47b3584d36
8 changed files with 36 additions and 36 deletions

View File

@ -177,10 +177,10 @@ GtkType gtk_ctree_get_type (void);
void gtk_ctree_construct (GtkCTree *ctree,
gint columns,
gint tree_column,
gchar *titles[]);
const gchar *titles[]);
GtkWidget * gtk_ctree_new_with_titles (gint columns,
gint tree_column,
gchar *titles[]);
const gchar *titles[]);
GtkWidget * gtk_ctree_new (gint columns,
gint tree_column);
GtkCTreeNode * gtk_ctree_insert_node (GtkCTree *ctree,