From 59c66fd0169b84fbbccf3dad672589f5d915d4a0 Mon Sep 17 00:00:00 2001 From: infirit Date: Sun, 6 Jul 2014 16:31:12 +0200 Subject: Replace GtkObject with GObject also for Gtk+ 2 --- applets/clock/calendar-window.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'applets/clock') diff --git a/applets/clock/calendar-window.c b/applets/clock/calendar-window.c index b19d3e2b..970ea218 100644 --- a/applets/clock/calendar-window.c +++ b/applets/clock/calendar-window.c @@ -365,11 +365,7 @@ calendar_window_set_property (GObject *object, } static void -#if GTK_CHECK_VERSION (3, 0, 0) calendar_window_dispose (GObject *object) -#else -calendar_window_destroy (GtkObject *object) -#endif { CalendarWindow *calwin; @@ -379,30 +375,19 @@ calendar_window_destroy (GtkObject *object) g_object_unref (calwin->priv->settings); calwin->priv->settings = NULL; -#if GTK_CHECK_VERSION (3, 0, 0) G_OBJECT_CLASS (calendar_window_parent_class)->dispose (object); -#else - GTK_OBJECT_CLASS (calendar_window_parent_class)->destroy (object); -#endif } static void calendar_window_class_init (CalendarWindowClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS (klass); -#if !GTK_CHECK_VERSION (3, 0, 0) - GtkObjectClass *gtkobject_class = GTK_OBJECT_CLASS (klass); -#endif gobject_class->constructor = calendar_window_constructor; gobject_class->get_property = calendar_window_get_property; gobject_class->set_property = calendar_window_set_property; -#if GTK_CHECK_VERSION (3, 0, 0) gobject_class->dispose = calendar_window_dispose; -#else - gtkobject_class->destroy = calendar_window_destroy; -#endif g_type_class_add_private (klass, sizeof (CalendarWindowPrivate)); -- cgit v1.2.1