diff options
author | Milan Crha <mcrha@redhat.com> | 2010-10-07 01:26:08 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-10-07 01:26:08 +0800 |
commit | 1c6f2d154e74f908e2c4a137de0233b5faf4f6b6 (patch) | |
tree | 77a33236e48ed59a7c7c65e8a1c91481dd09f3eb /calendar/gui/e-cal-list-view.c | |
parent | 1b2fefb086c3e34089beb8b89b22d79005cc7725 (diff) | |
download | gsoc2013-evolution-1c6f2d154e74f908e2c4a137de0233b5faf4f6b6.tar.gz gsoc2013-evolution-1c6f2d154e74f908e2c4a137de0233b5faf4f6b6.tar.zst gsoc2013-evolution-1c6f2d154e74f908e2c4a137de0233b5faf4f6b6.zip |
Bug #631320 - GtkObject is gone in GTK3
Diffstat (limited to 'calendar/gui/e-cal-list-view.c')
-rw-r--r-- | calendar/gui/e-cal-list-view.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/calendar/gui/e-cal-list-view.c b/calendar/gui/e-cal-list-view.c index 2efc7c2dff..70770aff53 100644 --- a/calendar/gui/e-cal-list-view.c +++ b/calendar/gui/e-cal-list-view.c @@ -61,7 +61,7 @@ #include "goto.h" #include "misc.h" -static void e_cal_list_view_destroy (GtkObject *object); +static void e_cal_list_view_dispose (GObject *object); static GList *e_cal_list_view_get_selected_events (ECalendarView *cal_view); static gboolean e_cal_list_view_get_selected_time_range (ECalendarView *cal_view, time_t *start_time, time_t *end_time); @@ -83,16 +83,16 @@ G_DEFINE_TYPE (ECalListView, e_cal_list_view, E_TYPE_CALENDAR_VIEW) static void e_cal_list_view_class_init (ECalListViewClass *class) { - GtkObjectClass *object_class; + GObjectClass *object_class; GtkWidgetClass *widget_class; ECalendarViewClass *view_class; - object_class = (GtkObjectClass *) class; + object_class = (GObjectClass *) class; widget_class = (GtkWidgetClass *) class; view_class = (ECalendarViewClass *) class; /* Method override */ - object_class->destroy = e_cal_list_view_destroy; + object_class->dispose = e_cal_list_view_dispose; widget_class->popup_menu = e_cal_list_view_popup_menu; @@ -317,7 +317,7 @@ e_cal_list_view_new (ECalModel *model) } static void -e_cal_list_view_destroy (GtkObject *object) +e_cal_list_view_dispose (GObject *object) { ECalListView *cal_list_view; @@ -345,7 +345,8 @@ e_cal_list_view_destroy (GtkObject *object) cal_list_view->table = NULL; } - GTK_OBJECT_CLASS (e_cal_list_view_parent_class)->destroy (object); + if (G_OBJECT_CLASS (e_cal_list_view_parent_class)->dispose) + G_OBJECT_CLASS (e_cal_list_view_parent_class)->dispose (object); } static void |