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/ea-cal-view.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'calendar/gui/ea-cal-view.c') diff --git a/calendar/gui/ea-cal-view.c b/calendar/gui/ea-cal-view.c index 2a1c128059..ceffaa0483 100644 --- a/calendar/gui/ea-cal-view.c +++ b/calendar/gui/ea-cal-view.c @@ -331,7 +331,11 @@ action_interface_do_action (AtkAction *action, gint index) */ return FALSE; +#if GTK_CHECK_VERSION(2,19,7) + if (!gtk_widget_get_sensitive (widget) || !gtk_widget_get_visible (widget)) +#else if (!GTK_WIDGET_IS_SENSITIVE (widget) || !GTK_WIDGET_VISIBLE (widget)) +#endif return FALSE; cal_view = E_CALENDAR_VIEW (widget); @@ -395,7 +399,11 @@ action_interface_get_keybinding (AtkAction *action, gint index) */ return NULL; +#if GTK_CHECK_VERSION(2,19,7) + if (!gtk_widget_get_sensitive (widget) || !gtk_widget_get_visible (widget)) +#else if (!GTK_WIDGET_IS_SENSITIVE (widget) || !GTK_WIDGET_VISIBLE (widget)) +#endif return NULL; switch (index) { -- cgit