diff --git a/ChangeLog b/ChangeLog index c7858fc597..558aa84453 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Fri Oct 4 12:00:10 2002 Owen Taylor + + * gdk/gdkscreen.c (gdk_screen_class_init): Get the + name right. + + * gdk/x11/gdkscreen-x11.c (gdk_screen_x11_class_init): + Fix function that should have been static. + Fri Oct 4 11:43:47 2002 Owen Taylor * configure.in: Add a check for the Xrandr extension. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index c7858fc597..558aa84453 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,11 @@ +Fri Oct 4 12:00:10 2002 Owen Taylor + + * gdk/gdkscreen.c (gdk_screen_class_init): Get the + name right. + + * gdk/x11/gdkscreen-x11.c (gdk_screen_x11_class_init): + Fix function that should have been static. + Fri Oct 4 11:43:47 2002 Owen Taylor * configure.in: Add a check for the Xrandr extension. diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index c7858fc597..558aa84453 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,11 @@ +Fri Oct 4 12:00:10 2002 Owen Taylor + + * gdk/gdkscreen.c (gdk_screen_class_init): Get the + name right. + + * gdk/x11/gdkscreen-x11.c (gdk_screen_x11_class_init): + Fix function that should have been static. + Fri Oct 4 11:43:47 2002 Owen Taylor * configure.in: Add a check for the Xrandr extension. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index c7858fc597..558aa84453 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,11 @@ +Fri Oct 4 12:00:10 2002 Owen Taylor + + * gdk/gdkscreen.c (gdk_screen_class_init): Get the + name right. + + * gdk/x11/gdkscreen-x11.c (gdk_screen_x11_class_init): + Fix function that should have been static. + Fri Oct 4 11:43:47 2002 Owen Taylor * configure.in: Add a check for the Xrandr extension. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index c7858fc597..558aa84453 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,11 @@ +Fri Oct 4 12:00:10 2002 Owen Taylor + + * gdk/gdkscreen.c (gdk_screen_class_init): Get the + name right. + + * gdk/x11/gdkscreen-x11.c (gdk_screen_x11_class_init): + Fix function that should have been static. + Fri Oct 4 11:43:47 2002 Owen Taylor * configure.in: Add a check for the Xrandr extension. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index c7858fc597..558aa84453 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,11 @@ +Fri Oct 4 12:00:10 2002 Owen Taylor + + * gdk/gdkscreen.c (gdk_screen_class_init): Get the + name right. + + * gdk/x11/gdkscreen-x11.c (gdk_screen_x11_class_init): + Fix function that should have been static. + Fri Oct 4 11:43:47 2002 Owen Taylor * configure.in: Add a check for the Xrandr extension. diff --git a/gdk/gdkscreen.c b/gdk/gdkscreen.c index 12cd13fb58..508803e412 100644 --- a/gdk/gdkscreen.c +++ b/gdk/gdkscreen.c @@ -64,8 +64,8 @@ gdk_screen_get_type (void) return object_type; } -void -gdk_screen_x11_class_init (GdkScreenClass *klass) +static void +gdk_screen_class_init (GdkScreenClass *klass) { signals[SIZE_CHANGED] = g_signal_new ("size_changed", diff --git a/gdk/x11/gdkscreen-x11.c b/gdk/x11/gdkscreen-x11.c index dc408adee8..ceaa314630 100644 --- a/gdk/x11/gdkscreen-x11.c +++ b/gdk/x11/gdkscreen-x11.c @@ -82,7 +82,7 @@ _gdk_screen_x11_get_type () return object_type; } -void +static void gdk_screen_x11_class_init (GdkScreenX11Class *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass);