diff --git a/ChangeLog b/ChangeLog index a22b249d5..c2563a153 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Mon Mar 4 10:35:28 2002 Owen Taylor + + * gtk/gtknotebook.c (gtk_notebook_set_current_page): Fix docs + in terms of what out of range @page_num does. (#73371, + Vitaly Tishkov.) + 2002-03-02 Havoc Pennington * demos/gtk-demo/editable_cells.c (cell_edited): const fix diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index a22b249d5..c2563a153 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,9 @@ +Mon Mar 4 10:35:28 2002 Owen Taylor + + * gtk/gtknotebook.c (gtk_notebook_set_current_page): Fix docs + in terms of what out of range @page_num does. (#73371, + Vitaly Tishkov.) + 2002-03-02 Havoc Pennington * demos/gtk-demo/editable_cells.c (cell_edited): const fix diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index a22b249d5..c2563a153 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Mon Mar 4 10:35:28 2002 Owen Taylor + + * gtk/gtknotebook.c (gtk_notebook_set_current_page): Fix docs + in terms of what out of range @page_num does. (#73371, + Vitaly Tishkov.) + 2002-03-02 Havoc Pennington * demos/gtk-demo/editable_cells.c (cell_edited): const fix diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index a22b249d5..c2563a153 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,9 @@ +Mon Mar 4 10:35:28 2002 Owen Taylor + + * gtk/gtknotebook.c (gtk_notebook_set_current_page): Fix docs + in terms of what out of range @page_num does. (#73371, + Vitaly Tishkov.) + 2002-03-02 Havoc Pennington * demos/gtk-demo/editable_cells.c (cell_edited): const fix diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index a22b249d5..c2563a153 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +Mon Mar 4 10:35:28 2002 Owen Taylor + + * gtk/gtknotebook.c (gtk_notebook_set_current_page): Fix docs + in terms of what out of range @page_num does. (#73371, + Vitaly Tishkov.) + 2002-03-02 Havoc Pennington * demos/gtk-demo/editable_cells.c (cell_edited): const fix diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index a22b249d5..c2563a153 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Mon Mar 4 10:35:28 2002 Owen Taylor + + * gtk/gtknotebook.c (gtk_notebook_set_current_page): Fix docs + in terms of what out of range @page_num does. (#73371, + Vitaly Tishkov.) + 2002-03-02 Havoc Pennington * demos/gtk-demo/editable_cells.c (cell_edited): const fix diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index a22b249d5..c2563a153 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Mon Mar 4 10:35:28 2002 Owen Taylor + + * gtk/gtknotebook.c (gtk_notebook_set_current_page): Fix docs + in terms of what out of range @page_num does. (#73371, + Vitaly Tishkov.) + 2002-03-02 Havoc Pennington * demos/gtk-demo/editable_cells.c (cell_edited): const fix diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index 7596a6cd3..8eb626ad8 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -4159,8 +4159,9 @@ gtk_notebook_page_num (GtkNotebook *notebook, * gtk_notebook_set_current_page: * @notebook: a #GtkNotebook * @page_num: index of the page to switch to, starting from 0. - * If negative, or greater than the number of pages - * in the notebook the last page will be used. + * If negative, the last page will be used. If greater + * than the number of pages in the notebook, nothing + * will be done. * * Switches to the page number @page_num. **/