Mercurial > geeqie
diff src/image.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/image.c Sun Feb 28 22:55:37 2010 +0000 +++ b/src/image.c Mon May 10 11:32:56 2010 +0000 @@ -905,7 +905,11 @@ { ImageWindow *imd = data; +#if GTK_CHECK_VERSION(2,20,0) + image_focus_paint(imd, gtk_widget_has_focus(widget), &event->area); +#else image_focus_paint(imd, GTK_WIDGET_HAS_FOCUS(widget), &event->area); +#endif return TRUE; }
