diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-10-11 04:25:53 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-10-11 04:25:53 +0000 |
commit | 45bebb670ccc01678eb37f8de46ea0f67a496e55 (patch) | |
tree | 4115c504dfa8841b34716778371e27d5791ab75b | |
parent | 4b222b11e2adb92c8109820e2ddebd5d7a1ba898 (diff) |
updated ChangeLog.ja.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@630 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog.ja | 12 | ||||
-rw-r--r-- | libsylph/procheader.c | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog.ja b/ChangeLog.ja index 232e137c..50b73340 100644 --- a/ChangeLog.ja +++ b/ChangeLog.ja @@ -1,3 +1,15 @@ +2005-10-11 + + * src/folderview.c: folderview_drag_motion_cb(): win32: 修飾キーが + 押されていなかったら context->actions をリセットするようにした + (DnD のアクションがデフォルトでコピーになるのを修正)。 + +2005-10-10 + + * libsylph/utils.c + libsylph/procheader.c: Date: ヘッダが異常な時間の場合受診時に + クラッシュを起こすバグを修正。 + 2005-10-07 * libsylph/recv.[ch] diff --git a/libsylph/procheader.c b/libsylph/procheader.c index 82a1d615..c972a83f 100644 --- a/libsylph/procheader.c +++ b/libsylph/procheader.c @@ -794,7 +794,7 @@ void procheader_date_get_localtime(gchar *dest, gint len, const time_t timer) lt = localtime(&timer); if (!lt) { - g_warning("can't get localtime of %d\n", timer); + g_warning("can't get localtime of %ld\n", timer); dest[0] = '\0'; return; } |