diff options
author | Milan Crha <mcrha@redhat.com> | 2012-02-15 20:50:52 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-02-15 20:50:52 +0800 |
commit | 99d4558915e709f770bfa142d6fec3f6ce32db10 (patch) | |
tree | 6ce78b9b532fa41fa06e8f10c587b4e1c497c603 /modules | |
parent | 0b8999bfe5e93cfbcbb6771105fd53231883f795 (diff) | |
download | gsoc2013-evolution-99d4558915e709f770bfa142d6fec3f6ce32db10.tar gsoc2013-evolution-99d4558915e709f770bfa142d6fec3f6ce32db10.tar.gz gsoc2013-evolution-99d4558915e709f770bfa142d6fec3f6ce32db10.tar.bz2 gsoc2013-evolution-99d4558915e709f770bfa142d6fec3f6ce32db10.tar.lz gsoc2013-evolution-99d4558915e709f770bfa142d6fec3f6ce32db10.tar.xz gsoc2013-evolution-99d4558915e709f770bfa142d6fec3f6ce32db10.tar.zst gsoc2013-evolution-99d4558915e709f770bfa142d6fec3f6ce32db10.zip |
Be able to define help target for Preferences pages
A follow-up for bug #670073
Diffstat (limited to 'modules')
-rw-r--r-- | modules/addressbook/e-book-shell-backend.c | 2 | ||||
-rw-r--r-- | modules/calendar/e-cal-shell-backend.c | 1 | ||||
-rw-r--r-- | modules/mail/e-mail-shell-backend.c | 4 |
3 files changed, 7 insertions, 0 deletions
diff --git a/modules/addressbook/e-book-shell-backend.c b/modules/addressbook/e-book-shell-backend.c index b717b090d3..5a564e8fa4 100644 --- a/modules/addressbook/e-book-shell-backend.c +++ b/modules/addressbook/e-book-shell-backend.c @@ -343,6 +343,7 @@ book_shell_backend_init_preferences (EShell *shell) "contacts", "preferences-autocompletion", _("Contacts"), + "index#contacts", autocompletion_config_new, 200); @@ -353,6 +354,7 @@ book_shell_backend_init_preferences (EShell *shell) "certificates", "preferences-certificates", _("Certificates"), + "mail-encryption-s-mime-manage", e_cert_manager_config_new, 700); #endif diff --git a/modules/calendar/e-cal-shell-backend.c b/modules/calendar/e-cal-shell-backend.c index 399a5ea80c..f13cc2d715 100644 --- a/modules/calendar/e-cal-shell-backend.c +++ b/modules/calendar/e-cal-shell-backend.c @@ -792,6 +792,7 @@ cal_shell_backend_constructed (GObject *object) "calendar-and-tasks", "preferences-calendar-and-tasks", _("Calendar and Tasks"), + "index#calendar", e_calendar_preferences_new, 600); diff --git a/modules/mail/e-mail-shell-backend.c b/modules/mail/e-mail-shell-backend.c index 4e28d8c629..48cde2c502 100644 --- a/modules/mail/e-mail-shell-backend.c +++ b/modules/mail/e-mail-shell-backend.c @@ -429,6 +429,7 @@ mail_shell_backend_constructed (GObject *object) "mail-accounts", "preferences-mail-accounts", _("Mail Accounts"), + "mail-account-management", em_account_prefs_new, 100); @@ -437,6 +438,7 @@ mail_shell_backend_constructed (GObject *object) "mail", "preferences-mail", _("Mail Preferences"), + "index#mail-basic", em_mailer_prefs_new, 300); @@ -445,6 +447,7 @@ mail_shell_backend_constructed (GObject *object) "composer", "preferences-composer", _("Composer Preferences"), + "index#mail-composing", em_composer_prefs_new, 400); @@ -453,6 +456,7 @@ mail_shell_backend_constructed (GObject *object) "system-network-proxy", "preferences-system-network-proxy", _("Network Preferences"), + NULL, em_network_prefs_new, 500); } |