From 2836a54dd6d61e35d1446f9a23a628064516a309 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Thu, 4 Mar 2010 23:38:41 -0500 Subject: Work around recent GTK+ deprecations. --- calendar/gui/gnome-cal.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'calendar/gui/gnome-cal.c') diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 987d3dad9c..8c48b8eafb 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -1993,7 +1993,11 @@ gnome_calendar_update_date_navigator (GnomeCalendar *gcal) return; /* If the ECalendar isn't visible, we just return. */ +#if GTK_CHECK_VERSION(2,19,7) + if (!gtk_widget_get_visible (GTK_WIDGET (priv->date_navigator))) +#else if (!GTK_WIDGET_VISIBLE (priv->date_navigator)) +#endif return; if (priv->current_view_type == GNOME_CAL_LIST_VIEW && !priv->lview_select_daten_range) -- cgit