diff --git a/ChangeLog b/ChangeLog index edeac32568..0d224ad092 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Fri Apr 18 15:11:50 2003 Owen Taylor + + * gdk/x11/gdkdisplay-x11.c (_gdk_display_x11_get_type) + gdk/x11/gdkscreen-x11.c (_gdk_screen_x11_get_type): Fix + wrong use of base_finalize. (#105126, Sven Neumann) + Fri Apr 18 15:06:00 2003 Owen Taylor * gdk/gdkwindow.c (gdk_window_constrain_size): Fix diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index edeac32568..0d224ad092 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Fri Apr 18 15:11:50 2003 Owen Taylor + + * gdk/x11/gdkdisplay-x11.c (_gdk_display_x11_get_type) + gdk/x11/gdkscreen-x11.c (_gdk_screen_x11_get_type): Fix + wrong use of base_finalize. (#105126, Sven Neumann) + Fri Apr 18 15:06:00 2003 Owen Taylor * gdk/gdkwindow.c (gdk_window_constrain_size): Fix diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index edeac32568..0d224ad092 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +Fri Apr 18 15:11:50 2003 Owen Taylor + + * gdk/x11/gdkdisplay-x11.c (_gdk_display_x11_get_type) + gdk/x11/gdkscreen-x11.c (_gdk_screen_x11_get_type): Fix + wrong use of base_finalize. (#105126, Sven Neumann) + Fri Apr 18 15:06:00 2003 Owen Taylor * gdk/gdkwindow.c (gdk_window_constrain_size): Fix diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index edeac32568..0d224ad092 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Fri Apr 18 15:11:50 2003 Owen Taylor + + * gdk/x11/gdkdisplay-x11.c (_gdk_display_x11_get_type) + gdk/x11/gdkscreen-x11.c (_gdk_screen_x11_get_type): Fix + wrong use of base_finalize. (#105126, Sven Neumann) + Fri Apr 18 15:06:00 2003 Owen Taylor * gdk/gdkwindow.c (gdk_window_constrain_size): Fix diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index edeac32568..0d224ad092 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Fri Apr 18 15:11:50 2003 Owen Taylor + + * gdk/x11/gdkdisplay-x11.c (_gdk_display_x11_get_type) + gdk/x11/gdkscreen-x11.c (_gdk_screen_x11_get_type): Fix + wrong use of base_finalize. (#105126, Sven Neumann) + Fri Apr 18 15:06:00 2003 Owen Taylor * gdk/gdkwindow.c (gdk_window_constrain_size): Fix diff --git a/gdk/x11/gdkdisplay-x11.c b/gdk/x11/gdkdisplay-x11.c index 126b3a8ce8..dbd8b3eaf4 100644 --- a/gdk/x11/gdkdisplay-x11.c +++ b/gdk/x11/gdkdisplay-x11.c @@ -66,7 +66,7 @@ _gdk_display_x11_get_type (void) { sizeof (GdkDisplayX11Class), (GBaseInitFunc) NULL, - (GBaseFinalizeFunc) gdk_display_x11_finalize, + (GBaseFinalizeFunc) NULL, (GClassInitFunc) gdk_display_x11_class_init, NULL, /* class_finalize */ NULL, /* class_data */ diff --git a/gdk/x11/gdkscreen-x11.c b/gdk/x11/gdkscreen-x11.c index b955a3207a..21d66f25d5 100644 --- a/gdk/x11/gdkscreen-x11.c +++ b/gdk/x11/gdkscreen-x11.c @@ -70,7 +70,7 @@ _gdk_screen_x11_get_type () { sizeof (GdkScreenX11Class), (GBaseInitFunc) NULL, - (GBaseFinalizeFunc) gdk_screen_x11_finalize, + (GBaseFinalizeFunc) NULL, (GClassInitFunc) gdk_screen_x11_class_init, NULL, /* class_finalize */ NULL, /* class_data */