diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-09-08 00:31:19 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-09-08 07:08:54 +0800 |
commit | 3da4948c0fc1f2c21b163f0ec456b2d99c881258 (patch) | |
tree | 479d6153d31e03cb7a65990683b5271402e5ec29 /shell/e-shell-utils.c | |
parent | 2e5031cb4538b4819e5fce5d717668c3445df80a (diff) | |
download | gsoc2013-evolution-3da4948c0fc1f2c21b163f0ec456b2d99c881258.tar gsoc2013-evolution-3da4948c0fc1f2c21b163f0ec456b2d99c881258.tar.gz gsoc2013-evolution-3da4948c0fc1f2c21b163f0ec456b2d99c881258.tar.bz2 gsoc2013-evolution-3da4948c0fc1f2c21b163f0ec456b2d99c881258.tar.lz gsoc2013-evolution-3da4948c0fc1f2c21b163f0ec456b2d99c881258.tar.xz gsoc2013-evolution-3da4948c0fc1f2c21b163f0ec456b2d99c881258.tar.zst gsoc2013-evolution-3da4948c0fc1f2c21b163f0ec456b2d99c881258.zip |
Miscellaneous cleanups.
Diffstat (limited to 'shell/e-shell-utils.c')
-rw-r--r-- | shell/e-shell-utils.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/shell/e-shell-utils.c b/shell/e-shell-utils.c index 655f785ba0..97982cfbf9 100644 --- a/shell/e-shell-utils.c +++ b/shell/e-shell-utils.c @@ -168,11 +168,14 @@ e_shell_run_save_dialog (EShell *shell, gtk_file_filter_add_pattern (filter, flt); if (g_ascii_strcasecmp (flt, "*.mbox") == 0) - gtk_file_filter_set_name (filter, _("Berkeley Mailbox (mbox)")); + gtk_file_filter_set_name ( + filter, _("Berkeley Mailbox (mbox)")); else if (g_ascii_strcasecmp (flt, "*.vcf") == 0) - gtk_file_filter_set_name (filter, _("vCard (.vcf)")); + gtk_file_filter_set_name ( + filter, _("vCard (.vcf)")); else if (g_ascii_strcasecmp (flt, "*.ics") == 0) - gtk_file_filter_set_name (filter, _("iCalendar (.ics)")); + gtk_file_filter_set_name ( + filter, _("iCalendar (.ics)")); while (delim) { delim++; |