Mercurial > geeqie
diff src/logwindow.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/logwindow.c Sun Feb 28 22:55:37 2010 +0000 +++ b/src/logwindow.c Mon May 10 11:32:56 2010 +0000 @@ -268,7 +268,11 @@ log_window_insert_text(buffer, &iter, str, logdefs[type].tag); +#if GTK_CHECK_VERSION(2,20,0) + if (gtk_widget_get_visible(text)) +#else if (GTK_WIDGET_VISIBLE(text)) +#endif { GtkTextMark *mark;
