Fix 308111

This commit is contained in:
Matthias Clasen 2005-06-18 04:26:47 +00:00
parent fb6ce33533
commit 28e712df0a
4 changed files with 11 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2005-06-18 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkpaned.c (gtk_paned_add): Barf if more than
2 children are added. (#308111, Morten Welinder)
* gtk/gtkcalendar.c (gtk_calendar_init): _NL_FIRST_WEEKDAY is
1-based. (#163842, Pierre Ossman)

View File

@ -1,5 +1,8 @@
2005-06-18 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkpaned.c (gtk_paned_add): Barf if more than
2 children are added. (#308111, Morten Welinder)
* gtk/gtkcalendar.c (gtk_calendar_init): _NL_FIRST_WEEKDAY is
1-based. (#163842, Pierre Ossman)

View File

@ -1,5 +1,8 @@
2005-06-18 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkpaned.c (gtk_paned_add): Barf if more than
2 children are added. (#308111, Morten Welinder)
* gtk/gtkcalendar.c (gtk_calendar_init): _NL_FIRST_WEEKDAY is
1-based. (#163842, Pierre Ossman)

View File

@ -1007,6 +1007,8 @@ gtk_paned_add (GtkContainer *container,
gtk_paned_add1 (paned, widget);
else if (!paned->child2)
gtk_paned_add2 (paned, widget);
else
g_warning ("GtkPaned cannot have more than 2 children\n");
}
static void