diff options
author | monsta <[email protected]> | 2018-01-28 21:15:38 +0300 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-01-30 11:56:38 +0100 |
commit | 0cce876dac2617c9cb7145ad6815c80b2040403e (patch) | |
tree | 666c114e778502870bc5831dc19ea3aa2135e8e2 /src/eom-util.c | |
parent | f09cf54ef735e19c153ca44c5d13b06c5dddd2f1 (diff) | |
download | eom-0cce876dac2617c9cb7145ad6815c80b2040403e.tar.bz2 eom-0cce876dac2617c9cb7145ad6815c80b2040403e.tar.xz |
require GTK+ 3.22 and GLib 2.50
and drop additional checks for min/max GLib versions, it's not needed
Diffstat (limited to 'src/eom-util.c')
-rw-r--r-- | src/eom-util.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/eom-util.c b/src/eom-util.c index a20ea34..5fd2335 100644 --- a/src/eom-util.c +++ b/src/eom-util.c @@ -53,11 +53,7 @@ eom_util_show_help (const gchar *section, GtkWindow *parent) if (section) uri = g_strdup_printf ("help:eom/%s", section); -#if GTK_CHECK_VERSION (3, 22, 0) gtk_show_uri_on_window (parent, ((uri != NULL) ? uri : "help:eom"), -#else - gtk_show_uri (NULL, ((uri != NULL) ? uri : "help:eom"), -#endif gtk_get_current_event_time (), &error); g_free (uri); |