diff options
author | monsta <[email protected]> | 2018-01-28 22:42:47 +0300 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-01-30 20:11:14 +0100 |
commit | 2be32a55532fbb010f83472064435aae49e36270 (patch) | |
tree | 8a57f8d9d0b17ea7d4277c5d167c6eee4d0164b8 /capplets/common/capplet-util.c | |
parent | 312edc87dae270e11ce2955c7c26b3387ae94985 (diff) | |
download | mate-control-center-2be32a55532fbb010f83472064435aae49e36270.tar.bz2 mate-control-center-2be32a55532fbb010f83472064435aae49e36270.tar.xz |
require GTK+ 3.22 and GLib 2.50
Diffstat (limited to 'capplets/common/capplet-util.c')
-rw-r--r-- | capplets/common/capplet-util.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/capplets/common/capplet-util.c b/capplets/common/capplet-util.c index 3f9e4b53..d2458d9b 100644 --- a/capplets/common/capplet-util.c +++ b/capplets/common/capplet-util.c @@ -71,26 +71,12 @@ capplet_help (GtkWindow *parent, char const *section) { GError *error = NULL; char *uri; -#if !GTK_CHECK_VERSION (3, 22, 0) - GdkScreen *screen; -#endif g_return_if_fail (section != NULL); -#if !GTK_CHECK_VERSION (3, 22, 0) - if (!parent) - screen = gdk_screen_get_default (); - else - screen = gtk_widget_get_screen (GTK_WIDGET (parent)); -#endif - uri = g_strdup_printf ("help:mate-user-guide/%s", section); -#if GTK_CHECK_VERSION (3, 22, 0) if (!gtk_show_uri_on_window (parent , uri, gtk_get_current_event_time (), &error)) { -#else - if (!gtk_show_uri (screen, uri, gtk_get_current_event_time (), &error)) { -#endif capplet_error_dialog ( parent, _("There was an error displaying help: %s"), |