Don't include page->menu_label - causes various problems, including

Mon Aug 25 17:28:04 2003  Owen Taylor  <otaylor@redhat.com>

        * gtk/gtknotebook.c (gtk_notebook_forall): Don't
        include page->menu_label - causes various problems,
        including #12047.
This commit is contained in:
Owen Taylor 2003-08-25 21:34:49 +00:00 committed by Owen Taylor
parent 43d9992934
commit 9eb2d7c261
6 changed files with 30 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Mon Aug 25 17:28:04 2003 Owen Taylor <otaylor@redhat.com>
* gtk/gtknotebook.c (gtk_notebook_forall): Don't
include page->menu_label - causes various problems,
including #12047.
Mon Aug 25 23:21:43 2003 Kristian Rietveld <kris@gtk.org> Mon Aug 25 23:21:43 2003 Kristian Rietveld <kris@gtk.org>
Merge from stable. Merge from stable.

View File

@ -1,3 +1,9 @@
Mon Aug 25 17:28:04 2003 Owen Taylor <otaylor@redhat.com>
* gtk/gtknotebook.c (gtk_notebook_forall): Don't
include page->menu_label - causes various problems,
including #12047.
Mon Aug 25 23:21:43 2003 Kristian Rietveld <kris@gtk.org> Mon Aug 25 23:21:43 2003 Kristian Rietveld <kris@gtk.org>
Merge from stable. Merge from stable.

View File

@ -1,3 +1,9 @@
Mon Aug 25 17:28:04 2003 Owen Taylor <otaylor@redhat.com>
* gtk/gtknotebook.c (gtk_notebook_forall): Don't
include page->menu_label - causes various problems,
including #12047.
Mon Aug 25 23:21:43 2003 Kristian Rietveld <kris@gtk.org> Mon Aug 25 23:21:43 2003 Kristian Rietveld <kris@gtk.org>
Merge from stable. Merge from stable.

View File

@ -1,3 +1,9 @@
Mon Aug 25 17:28:04 2003 Owen Taylor <otaylor@redhat.com>
* gtk/gtknotebook.c (gtk_notebook_forall): Don't
include page->menu_label - causes various problems,
including #12047.
Mon Aug 25 23:21:43 2003 Kristian Rietveld <kris@gtk.org> Mon Aug 25 23:21:43 2003 Kristian Rietveld <kris@gtk.org>
Merge from stable. Merge from stable.

View File

@ -1,3 +1,9 @@
Mon Aug 25 17:28:04 2003 Owen Taylor <otaylor@redhat.com>
* gtk/gtknotebook.c (gtk_notebook_forall): Don't
include page->menu_label - causes various problems,
including #12047.
Mon Aug 25 23:21:43 2003 Kristian Rietveld <kris@gtk.org> Mon Aug 25 23:21:43 2003 Kristian Rietveld <kris@gtk.org>
Merge from stable. Merge from stable.

View File

@ -2400,8 +2400,6 @@ gtk_notebook_forall (GtkContainer *container,
{ {
if (page->tab_label) if (page->tab_label)
(* callback) (page->tab_label, callback_data); (* callback) (page->tab_label, callback_data);
if (page->menu_label)
(* callback) (page->menu_label, callback_data);
} }
} }
} }