aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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
h'>path: root/textproc/p5-PDF-Writer
Commit message (Expand)AuthorAgeFilesLines
* -remove MD5ohauer2011-07-031-1/+0
* - only 13% of the p5- ports embed @comment $FreeBSD$:pgollucci2010-09-241-1/+0
* - Take advantage of CPAN macro from bsd.sites.mk, change ${MASTER_SITE_PERL_C...araujo2008-04-171-2/+1
* Welcome bsd.perl.mk. Add support for constructs such as USE_PERL5=5.8.0+.linimon2007-09-081-7/+1
* This is a generalized API that allows a module that generates PDFs tonovel2006-07-11