From f2febf7c7117cada27276b1002eebe8eb64877e9 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Thu, 16 Feb 2017 04:52:02 +0100 Subject: [PATCH] GtkAboutDialog: We use gtk_show_uri_on_window() by default Not gtk_show_uri(). https://bugzilla.gnome.org/show_bug.cgi?id=778726 --- gtk/gtkaboutdialog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/gtkaboutdialog.c b/gtk/gtkaboutdialog.c index 3a8f495dba..98f0d0eb42 100644 --- a/gtk/gtkaboutdialog.c +++ b/gtk/gtkaboutdialog.c @@ -72,7 +72,7 @@ * All parts of the dialog are optional. * * About dialogs often contain links and email addresses. GtkAboutDialog - * displays these as clickable links. By default, it calls gtk_show_uri() + * displays these as clickable links. By default, it calls gtk_show_uri_on_window() * when a user clicks one. The behaviour can be overridden with the * #GtkAboutDialog::activate-link signal. * @@ -313,7 +313,7 @@ gtk_about_dialog_class_init (GtkAboutDialogClass *klass) * * The signal which gets emitted to activate a URI. * Applications may connect to it to override the default behaviour, - * which is to call gtk_show_uri(). + * which is to call gtk_show_uri_on_window(). * * Returns: %TRUE if the link has been activated *