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/e-task-table.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'calendar/gui/e-task-table.c') diff --git a/calendar/gui/e-task-table.c b/calendar/gui/e-task-table.c index e9f3645b30..9a3a9af210 100644 --- a/calendar/gui/e-task-table.c +++ b/calendar/gui/e-task-table.c @@ -1132,7 +1132,11 @@ task_table_paste_clipboard (ESelectable *selectable) /* Paste text into a cell being edited. */ if (gtk_clipboard_wait_is_text_available (clipboard) && +#if GTK_CHECK_VERSION(2,19,7) + gtk_widget_has_focus (GTK_WIDGET (table_canvas)) && +#else GTK_WIDGET_HAS_FOCUS (table_canvas) && +#endif E_IS_TABLE_ITEM (item) && E_TABLE_ITEM (item)->editing_col >= 0 && E_TABLE_ITEM (item)->editing_row >= 0) { -- cgit v1.2.3