diff options
author | Tim Janik <timj@gtk.org> | 1998-06-09 08:21:20 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-06-09 08:21:20 +0000 |
commit | cd34fdd04726605ac2b9f4b0f65fc26af1a38b66 (patch) | |
tree | 622188ea36f6cf007b7991b50ae22b1e320c9744 /gtk/makeenums.awk | |
parent | b377b2dc47111467b1cbb5300f5865fbdeab57d9 (diff) | |
download | gtk+-cd34fdd04726605ac2b9f4b0f65fc26af1a38b66.tar.gz |
renamed the newly created gtk_enum_get_values and gtk_enum_set_values to
Tue Jun 9 09:57:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtktypeutils.h:
* gtk/gtktypeutils.c: renamed the newly created gtk_enum_get_values and
gtk_enum_set_values to gtk_type_enum_get_values and
gtk_type_enum_set_values respectively, since they are actually type
system features.
* gtk/gtktypebuiltins_evals.c: oops, screwed the NULL termination with
my last commit. ;)
Diffstat (limited to 'gtk/makeenums.awk')
-rw-r--r-- | gtk/makeenums.awk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/makeenums.awk b/gtk/makeenums.awk index 87bab0c0a7..eaec10d134 100644 --- a/gtk/makeenums.awk +++ b/gtk/makeenums.awk @@ -72,6 +72,7 @@ function generate_arrays () printf (" { %s, \"%s\", \"%s\" },\n", value_names[i], value_names[i], value_nicks[i]); } + printf (" { 0, NULL, NULL }\n"); printf ("};\n"); } } |