diff options
author | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-10-14 19:03:09 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-10-14 19:03:09 +0800 |
commit | 46b0d7f51334b6a7c6716b157fbf1b6f55fe5ff0 (patch) | |
tree | 962e97d004f2e605655c3dc9d3ebc738a4fdfc83 /shell | |
parent | d46ec2039ee3c1632e7e5350c7d3582daf91c492 (diff) | |
parent | 4378af9ac6b6d2e5e345e4bb10dc1486f8cef44a (diff) | |
download | gsoc2013-evolution-46b0d7f51334b6a7c6716b157fbf1b6f55fe5ff0.tar gsoc2013-evolution-46b0d7f51334b6a7c6716b157fbf1b6f55fe5ff0.tar.gz gsoc2013-evolution-46b0d7f51334b6a7c6716b157fbf1b6f55fe5ff0.tar.bz2 gsoc2013-evolution-46b0d7f51334b6a7c6716b157fbf1b6f55fe5ff0.tar.lz gsoc2013-evolution-46b0d7f51334b6a7c6716b157fbf1b6f55fe5ff0.tar.xz gsoc2013-evolution-46b0d7f51334b6a7c6716b157fbf1b6f55fe5ff0.tar.zst gsoc2013-evolution-46b0d7f51334b6a7c6716b157fbf1b6f55fe5ff0.zip |
Merge branch 'master' into wip/gsettings
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell-window-actions.c | 9 |
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 |