Mercurial > geeqie
diff src/ui_tree_edit.c @ 1810:c416d099a3dc
GTK marks several functions as deprecated
The following functions has been replaced and deprecated by version
2.20:
- GTK_WIDGET_CAN_FOCUS
- GTK_WIDGET_DRAWABLE
- GTK_WIDGET_HAS_FOCUS
- GTK_WIDGET_HAS_GRAB
- GTK_WIDGET_IS_SENSITIVE
- GTK_WIDGET_NO_WINDOW
- GTK_WIDGET_REALIZED
- GTK_WIDGET_SENSITIVE
- GTK_WIDGET_STATE
- GTK_WIDGET_TOPLEVEL
- GTK_WIDGET_VISIBLE
| author | mow |
|---|---|
| date | Mon, 10 May 2010 11:32:56 +0000 |
| parents | 956aab097ea7 |
| children |
line wrap: on
line diff
--- a/src/ui_tree_edit.c Sun Feb 28 22:55:37 2010 +0000 +++ b/src/ui_tree_edit.c Mon May 10 11:32:56 2010 +0000 @@ -184,7 +184,11 @@ GList *work; if (!edit_func) return FALSE; +#if GTK_CHECK_VERSION(2,20,0) + if (!gtk_widget_get_visible(tree)) return FALSE; +#else if (!GTK_WIDGET_VISIBLE(tree)) return FALSE; +#endif tcolumn = gtk_tree_view_get_column(tree, column); if (!tcolumn) return FALSE;
