mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 03:05:40 +00:00
[SHELL32]
- Correctly show accessed and modified times in file properties dialog (they were exchanged). svn path=/trunk/; revision=47752
This commit is contained in:
parent
9291284ade
commit
1c5a1d20a1
1 changed files with 2 additions and 2 deletions
|
@ -327,13 +327,13 @@ SH_FileGeneralSetFileSizeTime(HWND hwndDlg, WCHAR *lpfilename, PULARGE_INTEGER l
|
|||
|
||||
if (SHFileGeneralGetFileTimeString(&accessed_time, resultstr))
|
||||
{
|
||||
hDlgCtrl = GetDlgItem(hwndDlg, 14017);
|
||||
hDlgCtrl = GetDlgItem(hwndDlg, 14019);
|
||||
SendMessageW(hDlgCtrl, WM_SETTEXT, (WPARAM)NULL, (LPARAM)resultstr);
|
||||
}
|
||||
|
||||
if (SHFileGeneralGetFileTimeString(&write_time, resultstr))
|
||||
{
|
||||
hDlgCtrl = GetDlgItem(hwndDlg, 14019);
|
||||
hDlgCtrl = GetDlgItem(hwndDlg, 14017);
|
||||
SendMessageW(hDlgCtrl, WM_SETTEXT, (WPARAM)NULL, (LPARAM)resultstr);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue