diff --git a/ChangeLog b/ChangeLog index 9f45c20b64..9915522ca4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-11-20 Matthias Clasen + + * gtk/gtkcontainer.c (gtk_container_propagate_expose): Typo fix. + Tue Nov 20 23:01:01 2001 Kristian Rietveld * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path): diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 9f45c20b64..9915522ca4 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,7 @@ +2001-11-20 Matthias Clasen + + * gtk/gtkcontainer.c (gtk_container_propagate_expose): Typo fix. + Tue Nov 20 23:01:01 2001 Kristian Rietveld * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path): diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 9f45c20b64..9915522ca4 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,7 @@ +2001-11-20 Matthias Clasen + + * gtk/gtkcontainer.c (gtk_container_propagate_expose): Typo fix. + Tue Nov 20 23:01:01 2001 Kristian Rietveld * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path): diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 9f45c20b64..9915522ca4 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,7 @@ +2001-11-20 Matthias Clasen + + * gtk/gtkcontainer.c (gtk_container_propagate_expose): Typo fix. + Tue Nov 20 23:01:01 2001 Kristian Rietveld * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path): diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 9f45c20b64..9915522ca4 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,7 @@ +2001-11-20 Matthias Clasen + + * gtk/gtkcontainer.c (gtk_container_propagate_expose): Typo fix. + Tue Nov 20 23:01:01 2001 Kristian Rietveld * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path): diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 9f45c20b64..9915522ca4 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,7 @@ +2001-11-20 Matthias Clasen + + * gtk/gtkcontainer.c (gtk_container_propagate_expose): Typo fix. + Tue Nov 20 23:01:01 2001 Kristian Rietveld * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path): diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 9f45c20b64..9915522ca4 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,7 @@ +2001-11-20 Matthias Clasen + + * gtk/gtkcontainer.c (gtk_container_propagate_expose): Typo fix. + Tue Nov 20 23:01:01 2001 Kristian Rietveld * gtk/gtktreemodel.c (gtk_tree_row_reference_unref_path): diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index f18a778ad2..248fdc3cf7 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,7 @@ +2001-11-20 Matthias Clasen + + * gdk/tmpl/event_structs.sgml: Small fixes. + 2001-11-16 Matthias Clasen * gdk/tmpl/event_structs.sgml: Updates. diff --git a/docs/reference/gdk/tmpl/event_structs.sgml b/docs/reference/gdk/tmpl/event_structs.sgml index e8d7d51d93..c223b3f223 100644 --- a/docs/reference/gdk/tmpl/event_structs.sgml +++ b/docs/reference/gdk/tmpl/event_structs.sgml @@ -171,7 +171,7 @@ when the wheel is turned. @window: the window which received the event. @send_event: %TRUE if the event was sent explicitly (e.g. using XSendEvent). -@time: +@time: the time of the event in milliseconds. @x: the x coordinate of the pointer relative to the window. @y: the y coordinate of the pointer relative to the window. @state: a bit-mask representing the state of the modifier keys (e.g. Control, @@ -249,7 +249,7 @@ Generated when the pointer enters or leaves a window. @y_root: the y coordinate of the pointer relative to the root of the screen. @mode: the crossing mode (%GDK_CROSSING_NORMAL, %GDK_CROSSING_GRAB or %GDK_CROSSING_UNGRAB). -@detail: the kind of crossing that happended (%GDK_NOTIFY_INFERIOR, +@detail: the kind of crossing that happened (%GDK_NOTIFY_INFERIOR, %GDK_NOTIFY_ANCESTOR, %GDK_NOTIFY_VIRTUAL, %GDK_NOTIFY_NONLINEAR or %GDK_NOTIFY_NONLINEAR_VIRTUAL). @focus: %TRUE if @window is the focus window or an inferior. diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c index efab0a7023..07b1c1201a 100644 --- a/gtk/gtkcontainer.c +++ b/gtk/gtkcontainer.c @@ -2216,7 +2216,7 @@ gtk_container_unmap (GtkWidget *widget) * when it receives an expose event, gtk_container_propagate_expose() * once for each child, passing in the event the container received. * - * gtk_container_propagate expose() takes care of deciding whether + * gtk_container_propagate_expose() takes care of deciding whether * an expose event needs to be sent to the child, intersecting * the event's area with the child area, and sending the event. *