Usual Windows fixes
authorColin Leroy <colin@colino.net>
Tue, 7 May 2013 10:47:25 +0000 (12:47 +0200)
committerColin Leroy <colin@colino.net>
Tue, 7 May 2013 10:48:20 +0000 (12:48 +0200)
src/plugins/address_keeper/claws.def
src/plugins/attachwarner/claws.def
src/plugins/pgpcore/claws.def
src/plugins/pgpcore/sgpgme.c

index e777d7381423eb3fcb14231db74e6c23317a65ba..14daf073cec54fa238b187e26d44a1de78612335 100644 (file)
@@ -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
index 5d8ff7528314a8cfe8b84bdcc62dd16f69777b73..64010d0b81506f3c80e9078cc24a5a7a17a2f5b7 100644 (file)
@@ -28,3 +28,4 @@ prefs_set_default
 prefs_write_open
 prefs_write_param
 prefs_common_get_prefs
+matcherlist_new_from_lines
index 265d11f779f5c54b81ba8f6e82bfeaa841e195e6..fe8c176567dc39dea05c4442f2df432b47238694 100644 (file)
@@ -76,3 +76,4 @@ textview_init
 textview_set_font
 textview_show_icon
 textview_show_mime_part
+fast_strftime
index 71ec5eb471c6802f6b266a90af2808fba43965cd..a2d7fa38a468e53072f9d81d83b100e4d98effef 100644 (file)
@@ -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);