From 5a80fe24b70031bdcb2f79cff2f692bd98d8ba53 Mon Sep 17 00:00:00 2001 From: Katayama Hirofumi MZ Date: Thu, 18 Apr 2024 20:52:47 +0900 Subject: [PATCH] Fix #77 2 --- HISTORY.txt | 4 ++-- XgDictList.cpp | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/HISTORY.txt b/HISTORY.txt index cfca3d2..73e3b49 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -317,7 +317,7 @@ - 2024-04-18 ver.5.2.4 - The serial number file name can be specified by the settings of file. - 2024-XX-YY ver.5.2.5 - - Added a function to display the dictionary update date. + - Added a function to display the dictionary update date and time. # 開発履歴 (Japanese) @@ -954,4 +954,4 @@ - 2024年04月18日 ver.5.2.4 - ファイルの設定で連番ファイル名を指定可能にした。 - 2024年XX月YY日 ver.5.2.5 - - 辞書の更新日を表示する機能を追加。 + - 辞書の更新日時を表示する機能を追加。 diff --git a/XgDictList.cpp b/XgDictList.cpp index 5f3e945..09fb6d1 100644 --- a/XgDictList.cpp +++ b/XgDictList.cpp @@ -94,8 +94,8 @@ void XgDictList_ReloadList(HWND hwnd) ::FileTimeToLocalFileTime(&find.ftLastWriteTime, &ftLocal); SYSTEMTIME st; ::FileTimeToSystemTime(&ftLocal, &st); - StringCchPrintfW(szText, _countof(szText), L"%04d-%02d-%02d", - st.wYear, st.wMonth, st.wDay); + StringCchPrintfW(szText, _countof(szText), L"%04d-%02d-%02d %02d:%02d", + st.wYear, st.wMonth, st.wDay, st.wHour, st.wMinute); item.pszText = szText; } item.pszText = szText; @@ -182,7 +182,7 @@ XgDictListDlgProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) ListView_InsertColumn(hwndLst1, 1, &column); column.pszText = XgLoadStringDx1(IDS_UPDATEDDATE); - column.cx = 90; + column.cx = 125; ListView_InsertColumn(hwndLst1, 2, &column); // イメージリストを設定。