From 33c4bd47a7210cd9e695ea1a2cbf26abbc3b7bed Mon Sep 17 00:00:00 2001 From: lukefromdc Date: Fri, 28 Jul 2017 23:44:13 -0400 Subject: don't use deprecated gtk_show_uri --- mate-panel/libpanel-util/panel-show.c | 12 ++++++++---- mate-panel/libpanel-util/panel-show.h | 3 ++- 2 files changed, 10 insertions(+), 5 deletions(-) (limited to 'mate-panel') diff --git a/mate-panel/libpanel-util/panel-show.c b/mate-panel/libpanel-util/panel-show.c index 2eeee2ec..a4c7f6d7 100644 --- a/mate-panel/libpanel-util/panel-show.c +++ b/mate-panel/libpanel-util/panel-show.c @@ -177,9 +177,11 @@ gboolean panel_show_uri(GdkScreen* screen, const gchar* uri, guint32 timestamp, { return panel_show_caja_search_uri(screen, uri, timestamp, error); } - +#if GTK_CHECK_VERSION (3, 22, 0) + gtk_show_uri_on_window (NULL, uri,timestamp, &local_error); +#else gtk_show_uri(screen, uri, timestamp, &local_error); - +#endif return _panel_show_handle_error(uri, screen, local_error, error); } @@ -282,9 +284,11 @@ panel_show_help (GdkScreen *screen, uri = g_strdup_printf ("help:%s/%s", doc, link); else uri = g_strdup_printf ("help:%s", doc); - +#if GTK_CHECK_VERSION (3, 22, 0) + gtk_show_uri_on_window (NULL, uri, gtk_get_current_event_time (), &local_error); +#else gtk_show_uri (screen, uri, gtk_get_current_event_time (), &local_error); - +#endif g_free (uri); return _panel_show_help_handle_error (doc, screen, local_error, error); diff --git a/mate-panel/libpanel-util/panel-show.h b/mate-panel/libpanel-util/panel-show.h index ec3e9baa..34111aaa 100644 --- a/mate-panel/libpanel-util/panel-show.h +++ b/mate-panel/libpanel-util/panel-show.h @@ -1,5 +1,6 @@ /* - * panel-show.h: a helper around gtk_show_uri + * panel-show.h: a helper around gtk_show_uri_on_window for gtk 3.22 + * or gtk_show_uri for gtk 3.20 and earlier * * Copyright (C) 2008 Novell, Inc. * -- cgit v1.2.1