diff options
author | Tim Janik <timj@gtk.org> | 1998-11-26 03:43:24 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-11-26 03:43:24 +0000 |
commit | c7ac3835fa2d5542bff316c3a02da626a754d213 (patch) | |
tree | fa66d00e02bf40e153dab5a9738d105ba828b68d /gtk/gtkclist.h | |
parent | ce073aac7dd120cc930c3f6d1f5e7334f96c8f6e (diff) | |
download | gdk-pixbuf-c7ac3835fa2d5542bff316c3a02da626a754d213.tar.gz |
reverted bogus and undocumented!!! changes from Jay Cox (98/11/23
Thu Nov 26 03:18:08 1998 Tim Janik <timj@gtk.org>
* gtk/gtkclist.h:
* gtk/gtkctree.h:
* gtk/gtkclist.c:
* gtk/gtkctree.c: reverted bogus and undocumented!!! changes from
Jay Cox (98/11/23 13:53:26) which `const' qualified char* arrays.
* gtk/maketypes.awk: changed underline substitution, so we get
GTK_TYPE_CTREE_POS instead of the broken GTK_TYPE_C_TREE_POS.
* gtk/makeenums.pl: likewise.
* gtk/gtkctree.c: adapted type names accordingly.
Diffstat (limited to 'gtk/gtkclist.h')
-rw-r--r-- | gtk/gtkclist.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtkclist.h b/gtk/gtkclist.h index 2323b3481..d140ad111 100644 --- a/gtk/gtkclist.h +++ b/gtk/gtkclist.h @@ -378,12 +378,12 @@ GtkType gtk_clist_get_type (void); /* constructors useful for gtk-- wrappers */ void gtk_clist_construct (GtkCList *clist, gint columns, - const gchar *titles[]); + gchar *titles[]); /* create a new GtkCList */ GtkWidget* gtk_clist_new (gint columns); GtkWidget* gtk_clist_new_with_titles (gint columns, - const gchar *titles[]); + gchar *titles[]); /* set adjustments of clist */ void gtk_clist_set_hadjustment (GtkCList *clist, @@ -605,16 +605,16 @@ gboolean gtk_clist_get_selectable (GtkCList *clist, * making it easier to append and modify a row */ gint gtk_clist_prepend (GtkCList *clist, - const gchar *text[]); + gchar *text[]); gint gtk_clist_append (GtkCList *clist, - const gchar *text[]); + gchar *text[]); /* inserts a row at index row and returns the row where it was * actually inserted (may be different from "row" in auto_sort mode) */ gint gtk_clist_insert (GtkCList *clist, gint row, - const gchar *text[]); + gchar *text[]); /* removes row at index row */ void gtk_clist_remove (GtkCList *clist, |