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

@ -3880,10 +3880,10 @@ ctree_is_hot_spot (GtkCTree *ctree,
***********************************************************/
void
gtk_ctree_construct (GtkCTree *ctree,
gint columns,
gint tree_column,
gchar *titles[])
gtk_ctree_construct (GtkCTree *ctree,
gint columns,
gint tree_column,
const gchar *titles[])
{
GtkCList *clist;
@ -3911,9 +3911,9 @@ gtk_ctree_construct (GtkCTree *ctree,
}
GtkWidget *
gtk_ctree_new_with_titles (gint columns,
gint tree_column,
gchar *titles[])
gtk_ctree_new_with_titles (gint columns,
gint tree_column,
const gchar *titles[])
{
GtkWidget *widget;