talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 66aa06c74413386eeb2198365e45c98df75e2782
parent c416e89d2a88b817eaffe17a801bf97f3e510018
Author: Colin Leroy <colin@colino.net>
Date:   Tue,  7 May 2013 12:47:25 +0200

Usual Windows fixes

Diffstat:
Msrc/plugins/address_keeper/claws.def | 2++
Msrc/plugins/attachwarner/claws.def | 1+
Msrc/plugins/pgpcore/claws.def | 1+
Msrc/plugins/pgpcore/sgpgme.c | 2+-
4 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/plugins/address_keeper/claws.def b/src/plugins/address_keeper/claws.def @@ -37,3 +37,5 @@ end_address_completion addressbook_peek_folder_exists prefs_common_translated_header_name addressbook_folder_selection +matcherlist_new_from_lines +gtkut_get_options_frame diff --git a/src/plugins/attachwarner/claws.def b/src/plugins/attachwarner/claws.def @@ -28,3 +28,4 @@ prefs_set_default prefs_write_open prefs_write_param prefs_common_get_prefs +matcherlist_new_from_lines diff --git a/src/plugins/pgpcore/claws.def b/src/plugins/pgpcore/claws.def @@ -76,3 +76,4 @@ textview_init textview_set_font textview_show_icon textview_show_mime_part +fast_strftime diff --git a/src/plugins/pgpcore/sgpgme.c b/src/plugins/pgpcore/sgpgme.c @@ -294,7 +294,7 @@ gchar *sgpgme_sigstat_info_full(gpgme_ctx_t ctx, gpgme_verify_result_t status) } memset(buf, 0, sizeof(buf)); - fast_strftime(buf, sizeof(buf)-1, prefs_common.date_format, localtime_r(&sig->timestamp, &lt)); + fast_strftime(buf, sizeof(buf)-1, prefs_common_get_prefs()->date_format, localtime_r(&sig->timestamp, &lt)); g_string_append_printf(siginfo, _("Signature made on %s using %s key ID %s\n"), buf, keytype, keyid);