diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-03-05 12:38:41 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-03-05 20:36:23 +0800 |
commit | 2836a54dd6d61e35d1446f9a23a628064516a309 (patch) | |
tree | b9cb2ab39212de803e935ed28957ee77e73c2d96 /calendar/gui/ea-day-view.c | |
parent | baa7f20333a5bbb7c8cbb3cf2ce86b57aba79ef2 (diff) | |
download | gsoc2013-evolution-2836a54dd6d61e35d1446f9a23a628064516a309.tar.gz gsoc2013-evolution-2836a54dd6d61e35d1446f9a23a628064516a309.tar.zst gsoc2013-evolution-2836a54dd6d61e35d1446f9a23a628064516a309.zip |
Work around recent GTK+ deprecations.
Diffstat (limited to 'calendar/gui/ea-day-view.c')
-rw-r--r-- | calendar/gui/ea-day-view.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/calendar/gui/ea-day-view.c b/calendar/gui/ea-day-view.c index 1d0199df3a..c75bf89f7b 100644 --- a/calendar/gui/ea-day-view.c +++ b/calendar/gui/ea-day-view.c @@ -133,7 +133,11 @@ ea_day_view_get_name (AtkObject *accessible) day_view = E_DAY_VIEW (GTK_ACCESSIBLE (accessible)->widget); gcal = e_calendar_view_get_calendar (E_CALENDAR_VIEW (day_view)); +#if GTK_CHECK_VERSION(2,19,7) + if (!gtk_widget_get_visible (GTK_WIDGET (gcal))) +#else if (!GTK_WIDGET_VISIBLE (GTK_WIDGET (gcal))) +#endif return NULL; label_text = ea_gnome_calendar_get_label_description (gcal); |