aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-10-13 20:41:37 +0800
committerMilan Crha <mcrha@redhat.com>2011-10-13 20:45:06 +0800
commit996aedccd361f2fd534fe515da87b1dc21c92b74 (patch)
tree98a8cbf12b69180c791548aa69b032ba24db97a3 /shell
parentd16916d506e50e9178ffe20233a2d8b939927224 (diff)
downloadgsoc2013-evolution-996aedccd361f2fd534fe515da87b1dc21c92b74.tar
gsoc2013-evolution-996aedccd361f2fd534fe515da87b1dc21c92b74.tar.gz
gsoc2013-evolution-996aedccd361f2fd534fe515da87b1dc21c92b74.tar.bz2
gsoc2013-evolution-996aedccd361f2fd534fe515da87b1dc21c92b74.tar.lz
gsoc2013-evolution-996aedccd361f2fd534fe515da87b1dc21c92b74.tar.xz
gsoc2013-evolution-996aedccd361f2fd534fe515da87b1dc21c92b74.tar.zst
gsoc2013-evolution-996aedccd361f2fd534fe515da87b1dc21c92b74.zip
Bug #576478 - [Windows] Redirect Help->Contents to a web page
Diffstat (limited to 'shell')
-rw-r--r--shell/e-shell-window-actions.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/e-shell-window-actions.c b/shell/e-shell-window-actions.c
index de4ce86569..2dd8228548 100644
--- a/shell/e-shell-window-actions.c
+++ b/shell/e-shell-window-actions.c
@@ -701,7 +701,16 @@ static void
action_contents_cb (GtkAction *action,
EShellWindow *shell_window)
{
+#ifdef G_OS_WIN32
+ /* On Windows, link to online help instead. See https://bugzilla.gnome.org/show_bug.cgi?id=576478 */
+ gchar *online_help_url;
+ online_help_url = g_strconcat (
+ "http://library.gnome.org/users/evolution/", BASE_VERSION, NULL);
+ e_show_uri (GTK_WINDOW (shell_window), online_help_url);
+ g_free (online_help_url);
+#else
e_display_help (GTK_WINDOW (shell_window), NULL);
+#endif
}
static void