diff options
author | Jonathan Blandford <jrb@redhat.com> | 2001-06-08 16:50:58 +0000 |
---|---|---|
committer | Jonathan Blandford <jrb@src.gnome.org> | 2001-06-08 16:50:58 +0000 |
commit | 72ef055bde913c993d4a38964542b1d1c4470e1b (patch) | |
tree | 1a0dfa26b1f5655535800ada3676d685d2e22f47 /docs | |
parent | da562f4dc8db7722ffc89198d42eb9e2efbda62a (diff) | |
download | gdk-pixbuf-72ef055bde913c993d4a38964542b1d1c4470e1b.tar.gz |
warn if row/cols are out of range. Fix bug #55921
Fri Jun 8 12:38:49 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktable.c (gtk_table_resize): warn if row/cols are out of
range. Fix bug #55921
* gtk/gtkliststore.c (gtk_list_store_new_with_types): fix doc bug
(#55920).
Fri Jun 8 12:38:49 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktable.c (gtk_table_resize): warn if row/cols are out of
range. Fix bug #55921
* gtk/gtkliststore.c (gtk_list_store_new_with_types): fix doc bug
(#55920).
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reference/ChangeLog | 4 | ||||
-rw-r--r-- | docs/reference/gtk/tmpl/gtktable.sgml | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index e4afc0565..2bc011643 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,7 @@ +Fri Jun 8 12:33:29 2001 Jonathan Blandford <jrb@redhat.com> + + * gtk/tmpl/gtktable.sgml: fix bug #55921 + 2001-06-05 Havoc Pennington <hp@redhat.com> * gtk/tmpl/gtkscale.sgml: more docs diff --git a/docs/reference/gtk/tmpl/gtktable.sgml b/docs/reference/gtk/tmpl/gtktable.sgml index 3ca973b37..59242d40b 100644 --- a/docs/reference/gtk/tmpl/gtktable.sgml +++ b/docs/reference/gtk/tmpl/gtktable.sgml @@ -100,7 +100,10 @@ These fields should be considered read-only and not be modified directly. <!-- ##### FUNCTION gtk_table_new ##### --> <para> -Used to create a new table widget. An initial size must be given by specifying how many rows and columns the table should have, although this can be changed later with gtk_table_resize(). +Used to create a new table widget. An initial size must be given by +specifying how many rows and columns the table should have, although +this can be changed later with gtk_table_resize(). @rows and @columns +must both be in the range 0 .. 65535. </para> @rows: The number of rows the new table should have. |