Mercurial > geeqie
diff src/ui_tabcomp.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_tabcomp.c Sun Feb 28 22:55:37 2010 +0000 +++ b/src/ui_tabcomp.c Mon May 10 11:32:56 2010 +0000 @@ -206,7 +206,11 @@ TabCompData *td = data; GtkWidget *child; +#if GTK_CHECK_VERSION(2,20,0) + if (!gtk_widget_get_visible(widget)) return; +#else if (!GTK_WIDGET_VISIBLE(widget)) return; +#endif child = gtk_bin_get_child(GTK_BIN(widget)); if (GTK_IS_LABEL(child)) { @@ -646,7 +650,11 @@ if (!td) return; +#if GTK_CHECK_VERSION(2,20,0) + if (!gtk_widget_has_focus(entry)) +#else if (!GTK_WIDGET_HAS_FOCUS(entry)) +#endif { gtk_widget_grab_focus(entry); }
