diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-03-22 17:09:34 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-03-22 19:58:44 +0800 |
commit | 311b718f10b3cf14c7c00da6b6f44e647131f3b3 (patch) | |
tree | 2c1f7098aa7c1a89f1ec47bafa61784fbba34ec7 | |
parent | 605f872bdc6cc6a1d9534c98054df66e8b6fc964 (diff) | |
download | gsoc2013-empathy-311b718f10b3cf14c7c00da6b6f44e647131f3b3.tar gsoc2013-empathy-311b718f10b3cf14c7c00da6b6f44e647131f3b3.tar.gz gsoc2013-empathy-311b718f10b3cf14c7c00da6b6f44e647131f3b3.tar.bz2 gsoc2013-empathy-311b718f10b3cf14c7c00da6b6f44e647131f3b3.tar.lz gsoc2013-empathy-311b718f10b3cf14c7c00da6b6f44e647131f3b3.tar.xz gsoc2013-empathy-311b718f10b3cf14c7c00da6b6f44e647131f3b3.tar.zst gsoc2013-empathy-311b718f10b3cf14c7c00da6b6f44e647131f3b3.zip |
Use help:empathy to open the help
Looks like the new doc infra uses "help" rather than "ghelp".
https://bugzilla.gnome.org/show_bug.cgi?id=672596
-rw-r--r-- | libempathy-gtk/empathy-ui-utils.c | 2 | ||||
-rw-r--r-- | src/empathy-accounts-dialog.c | 2 | ||||
-rw-r--r-- | src/empathy-call-window.c | 2 | ||||
-rw-r--r-- | src/empathy-chat-window.c | 2 | ||||
-rw-r--r-- | src/empathy-roster-window.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c index 6f86ccddd..23cff24f8 100644 --- a/libempathy-gtk/empathy-ui-utils.c +++ b/libempathy-gtk/empathy-ui-utils.c @@ -1701,7 +1701,7 @@ empathy_make_absolute_url_len (const gchar *url, { g_return_val_if_fail (url != NULL, NULL); - if (g_str_has_prefix (url, "ghelp:") || + if (g_str_has_prefix (url, "help:") || g_str_has_prefix (url, "mailto:") || strstr (url, ":/")) { return g_strndup (url, len); diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index e0e68fa02..0bdcf69d5 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -2348,7 +2348,7 @@ dialog_response_cb (GtkWidget *widget, if (response_id == GTK_RESPONSE_HELP) { - empathy_url_show (widget, "ghelp:empathy?accounts-window"); + empathy_url_show (widget, "help:empathy?accounts-window"); } else if (response_id == GTK_RESPONSE_CLOSE || response_id == GTK_RESPONSE_DELETE_EVENT) diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 10333d6c3..f49d2cbac 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -1383,7 +1383,7 @@ static void empathy_call_window_contents_cb (GtkAction *action, EmpathyCallWindow *self) { - empathy_url_show (GTK_WIDGET (self), "ghelp:empathy?audio-video"); + empathy_url_show (GTK_WIDGET (self), "help:empathy?audio-video"); } static void diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c index 587ae7d4b..f80f09611 100644 --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -1434,7 +1434,7 @@ chat_window_help_contents_activate_cb (GtkAction *action, { EmpathyChatWindowPriv *priv = GET_PRIV (window); - empathy_url_show (priv->dialog, "ghelp:empathy"); + empathy_url_show (priv->dialog, "help:empathy"); } static void diff --git a/src/empathy-roster-window.c b/src/empathy-roster-window.c index 454cd256a..4747b33e2 100644 --- a/src/empathy-roster-window.c +++ b/src/empathy-roster-window.c @@ -2052,7 +2052,7 @@ static void roster_window_help_contents_cb (GtkAction *action, EmpathyRosterWindow *self) { - empathy_url_show (GTK_WIDGET (self), "ghelp:empathy"); + empathy_url_show (GTK_WIDGET (self), "help:empathy"); } static gboolean |