From 5d919f3c1418ba2185a734cb658b0cb7efc24880 Mon Sep 17 00:00:00 2001 From: raveit65 Date: Wed, 26 Jul 2017 22:49:06 +0200 Subject: don't use deprecated gtk_show_uri --- capplet/main.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'capplet/main.c') diff --git a/capplet/main.c b/capplet/main.c index aa1008f..257618f 100644 --- a/capplet/main.c +++ b/capplet/main.c @@ -38,6 +38,15 @@ static GOptionEntry options[] = { static void dialog_response(GsmPropertiesDialog* dialog, guint response_id, gpointer data) { +#if GTK_CHECK_VERSION (3, 22, 0) + GError* error; + + if (response_id == GTK_RESPONSE_HELP) + { + error = NULL; + gtk_show_uri_on_window (GTK_WINDOW (dialog), "help:mate-user-guide/gosstartsession-2", + gtk_get_current_event_time (), &error); +#else GdkScreen* screen; GError* error; @@ -47,7 +56,8 @@ static void dialog_response(GsmPropertiesDialog* dialog, guint response_id, gpoi error = NULL; gtk_show_uri (screen, "help:mate-user-guide/gosstartsession-2", - gtk_get_current_event_time (), &error); + gtk_get_current_event_time (), &error); +#endif if (error != NULL) { -- cgit v1.2.1