diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-about-dialog.c | 2 | ||||
-rw-r--r-- | src/empathy-accounts-dialog.c | 2 | ||||
-rw-r--r-- | src/empathy-chat-window.c | 2 | ||||
-rw-r--r-- | src/empathy-ft-manager.c | 2 | ||||
-rw-r--r-- | src/empathy-main-window.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/empathy-about-dialog.c b/src/empathy-about-dialog.c index 14d292585..4765e6b32 100644 --- a/src/empathy-about-dialog.c +++ b/src/empathy-about-dialog.c @@ -99,7 +99,7 @@ about_dialog_activate_link_cb (GtkAboutDialog *about, const gchar *link, gpointer data) { - empathy_url_show (link); + empathy_url_show (GTK_WIDGET (about), link); } void diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index 0cca7035f..72967cbda 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -951,7 +951,7 @@ static void accounts_dialog_button_help_clicked_cb (GtkWidget *button, EmpathyAccountsDialog *dialog) { - empathy_url_show ("ghelp:empathy?empathy-create-account"); + empathy_url_show (button, "ghelp:empathy?empathy-create-account"); } static void diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c index 255c5d679..5a8cb1048 100644 --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -775,7 +775,7 @@ static void chat_window_help_contents_cb (GtkWidget *menuitem, EmpathyChatWindow *window) { - empathy_url_show ("ghelp:empathy?chat"); + empathy_url_show (menuitem, "ghelp:empathy?chat"); } static void diff --git a/src/empathy-ft-manager.c b/src/empathy-ft-manager.c index 78308b9d0..a506addec 100644 --- a/src/empathy-ft-manager.c +++ b/src/empathy-ft-manager.c @@ -556,7 +556,7 @@ ft_manager_open (EmpathyFTManager *ft_manager) uri = g_object_get_data (G_OBJECT (tp_file), "uri"); DEBUG ("Opening URI: %s", uri); - empathy_url_show (uri); + empathy_url_show (GTK_WIDGET (ft_manager->priv->window), uri); g_object_unref (tp_file); } diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index c5437385f..49bfe3d0a 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -924,7 +924,7 @@ static void main_window_help_contents_cb (GtkWidget *widget, EmpathyMainWindow *window) { - empathy_url_show ("ghelp:empathy"); + empathy_url_show (widget, "ghelp:empathy"); } static gboolean |