[evolution/gnome-3-2] Bug #576478 - [Windows] Redirect Help->Contents to a web page



commit 3ef0aaec239b10c85f4aa51b713145033ecb8ced
Author: Milan Crha <mcrha redhat com>
Date:   Thu Oct 13 14:42:52 2011 +0200

    Bug #576478 - [Windows] Redirect Help->Contents to a web page

 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 f389b4e..5d5e42e 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



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]